add the Currency Management page and handle the create currency form

This commit is contained in:
Wikzyy
2025-02-25 11:49:37 +07:00
parent e50b23c620
commit 987b5b62c3
5 changed files with 520 additions and 5 deletions

View File

@ -1,10 +1,17 @@
import { Container, DataGridInner } from '@/components';
import { ManageCurrencyContextProvider } from './hooks/ManageCurrencyContext';
import AddDialog from './blocks/AddDialog';
const ManageCurrency = () => {
return (
<div>
<div className="container mx-auto p-5">
<h1 className="text-xl font-medium leading-none text-gray-900">Manage Currency</h1>
</div>
</div>
<ManageCurrencyContextProvider>
<Container>
<div className="grid gap-5 lg:gap-7.5">
<DataGridInner />
</div>
<AddDialog />
</Container>
</ManageCurrencyContextProvider>
);
};