Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Mehdi-BOUYAHIA committed Oct 2, 2024
1 parent 620b919 commit a638310
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/pages/Export/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,15 @@ import { useAppSelector } from 'state'
import sideBarTransition from 'styles/sideBarTransition'

const exportColumnsTable = [
{}
{ label: 'N° de cohorte' },
{ label: 'Nom de la cohorte' },
{ label: 'Nombre de patient' },
{ label: "Nom de l'export" },
{ label: 'Date de l’export' },
{ label: 'Statut' },
{ label: 'Actions' }
]


const Export: React.FC = () => {
const { classes, cx } = sideBarTransition()
const openDrawer = useAppSelector((state) => state.drawer)
Expand All @@ -31,7 +36,9 @@ const Export: React.FC = () => {
<CssBaseline />
<Grid container item xs={11}>
<HeaderPage id="export-page-title" title="Mes exports" />
{/* <DataTable /> */}
<DataTable columns={exportColumnsTable}>
<p>salut</p>
</DataTable>
</Grid>
</Grid>
</Grid>
Expand Down

0 comments on commit a638310

Please sign in to comment.