mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-24 07:15:44 +00:00
feat(FE-316): Add Uniformity page and layout components
This commit is contained in:
@@ -0,0 +1,10 @@
|
|||||||
|
import { ReactNode } from 'react';
|
||||||
|
import UniformityPageWrapper from '@/components/pages/uniformity/UniformityPageWrapper';
|
||||||
|
|
||||||
|
export default function UniformityLayout({
|
||||||
|
children,
|
||||||
|
}: {
|
||||||
|
children: ReactNode;
|
||||||
|
}) {
|
||||||
|
return <UniformityPageWrapper>{children}</UniformityPageWrapper>;
|
||||||
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
const Uniformity = () => {
|
||||||
|
return <></>;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Uniformity;
|
||||||
Reference in New Issue
Block a user