tier page

This commit is contained in:
efrilm
2025-09-17 20:21:28 +07:00
parent 185edb94cb
commit 4655411b24
9 changed files with 1031 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
// MUI Imports
import Grid from '@mui/material/Grid2'
import TierListTable from './TierListTable'
// Type Imports
const TierList = () => {
return (
<Grid container spacing={6}>
<Grid size={{ xs: 12 }}>
<TierListTable />
</Grid>
</Grid>
)
}
export default TierList