Files
lti-web-client/src/app/master-data/system-config/page.tsx
T

12 lines
280 B
TypeScript

import { SystemConfigContent } from '@/figma-make/components/pages/master-data/system-config/SystemConfigContent';
const SystemConfigPage = () => {
return (
<section className='w-full'>
<SystemConfigContent />
</section>
);
};
export default SystemConfigPage;