import React, { FunctionComponent } from "react"; import { Project } from "../../types/project"; import { useProjectEstimations } from "../../hooks/useProjectEstimations"; import EstimationRange from "../EstimationRange"; export interface TimePreviewProps { project: Project } export const TimePreview: FunctionComponent = ({ project }) => { const estimations = useProjectEstimations(project); return (
Prévisionnel temps
Confiance Estimation
>= 99.7%
>= 90%
>= 68%
❓ Estimation à 3 points
); };