This commit is contained in:
efrilm
2025-12-23 13:26:32 +07:00
parent 37de68879c
commit 3cf7799a91
21 changed files with 2487 additions and 5 deletions
@@ -0,0 +1,17 @@
// MUI Imports
import Grid from '@mui/material/Grid2'
import DiscountListTable from './list'
// Type Imports
const DiscountList = () => {
return (
<Grid container spacing={6}>
<Grid size={{ xs: 12 }}>
<DiscountListTable />
</Grid>
</Grid>
)
}
export default DiscountList