-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Arnaud AMBROSELLI
committed
Feb 5, 2024
1 parent
5ca2ff5
commit 56af12f
Showing
10 changed files
with
204 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
export default function EvolutiveStatsViewer() { | ||
return ( | ||
<div className="tw-flex tw-w-full tw-justify-around"> | ||
<div className="tw-flex tw-basis-1/4 tw-flex-col tw-items-center tw-justify-end tw-gap-y-4"> | ||
<h5>Au 31/12/2023</h5> | ||
<div className="tw-flex tw-flex-col tw-items-center tw-justify-around tw-rounded-lg tw-border tw-p-4"> | ||
<p className="tw-text-6xl tw-font-bold tw-text-main">45</p> | ||
<p>des personnes SDF</p> | ||
</div> | ||
</div> | ||
<div className="tw-flex tw-basis-1/2 tw-flex-col tw-items-center tw-justify-end tw-gap-y-4"> | ||
<div className="tw-flex tw-flex-col tw-items-center tw-justify-around tw-p-4"> | ||
<p className="tw-text-6xl tw-font-bold tw-text-main">45%</p> | ||
<p className="tw-m-0 tw-text-center"> | ||
des “Sans” Couverture Médicale au 31/01/2022 | ||
<br /> | ||
ont évolué vers “AME” au 01/02/2023 | ||
</p> | ||
</div> | ||
</div> | ||
<div className="tw-flex tw-basis-1/4 tw-flex-col tw-items-center tw-justify-end tw-gap-y-4"> | ||
<h5>Au 31/12/2023</h5> | ||
<div className="tw-flex tw-flex-col tw-items-center tw-justify-around tw-rounded-lg tw-border tw-p-4"> | ||
<p className="tw-text-6xl tw-font-bold tw-text-main">45</p> | ||
<p>des personnes SDF</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import type { CustomOrPredefinedField } from '../types/field'; | ||
|
||
export type EvolutiveStatOption = string; | ||
export type EvolutiveStatDateYYYYMMDD = string; | ||
export type EvolutiveStatsPersonFields = Record< | ||
CustomOrPredefinedField['name'], | ||
Record<EvolutiveStatOption, Record<EvolutiveStatDateYYYYMMDD, number>> | ||
>; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters