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 101d570 commit 620b919
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Tables/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from 'react'
const TableLines: React.FC = () => {
return (
<div>
<h1>Tables</h1>
<h1>Tables lines</h1>
</div>
)
}
Expand Down
8 changes: 7 additions & 1 deletion src/pages/Export/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,18 @@ import React from 'react'
import { Grid, CssBaseline } from '@mui/material'

import HeaderPage from 'components/ui/HeaderPage'
import DataTable from 'components/DataTable/DataTable'
import Tables from 'components/Tables'

import { useAppSelector } from 'state'

import sideBarTransition from 'styles/sideBarTransition'

const exportColumnsTable = [

Check failure on line 13 in src/pages/Export/index.tsx

View workflow job for this annotation

GitHub Actions / test

Replace `⏎··{}⏎]⏎` with `{}]`
{}
]


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

0 comments on commit 620b919

Please sign in to comment.