add master data route
This commit is contained in:
15
src/pages/master/municipios/Municipios.tsx
Normal file
15
src/pages/master/municipios/Municipios.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
import { Container } from '@/components';
|
||||
import { ManageMunicipiosProvider } from './hooks/ManageMunicipiosContext';
|
||||
import MunicipiosContent from './MunicipiosContent';
|
||||
|
||||
const Municipios = () => {
|
||||
return (
|
||||
<ManageMunicipiosProvider>
|
||||
<Container>
|
||||
<MunicipiosContent />
|
||||
</Container>
|
||||
</ManageMunicipiosProvider>
|
||||
);
|
||||
};
|
||||
|
||||
export default Municipios;
|
||||
Reference in New Issue
Block a user