Add files via upload
This commit is contained in:
13
src/layouts/RootLayout/RootLayout.tsx
Normal file
13
src/layouts/RootLayout/RootLayout.tsx
Normal file
@@ -0,0 +1,13 @@
|
||||
import { FC, ReactNode } from 'react';
|
||||
|
||||
type MainLayout = {
|
||||
children: ReactNode;
|
||||
};
|
||||
|
||||
const RootLayout: FC<MainLayout> = ({ children }) => (
|
||||
<>
|
||||
{children}
|
||||
</>
|
||||
);
|
||||
|
||||
export default RootLayout;
|
||||
1
src/layouts/RootLayout/index.ts
Normal file
1
src/layouts/RootLayout/index.ts
Normal file
@@ -0,0 +1 @@
|
||||
export { default } from './RootLayout';
|
||||
Reference in New Issue
Block a user