mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
12 lines
315 B
TypeScript
12 lines
315 B
TypeScript
import { MasterConfigurationContent } from '@/figma-make/components/pages/master-data/configuration/MasterConfigurationContent';
|
|
|
|
const MasterConfigurationPage = () => {
|
|
return (
|
|
<section className='w-full'>
|
|
<MasterConfigurationContent />
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default MasterConfigurationPage;
|