1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00
vault-frontend/src/containers/main/MainLayout/index.tsx
2021-10-13 17:57:26 +07:00

12 lines
302 B
TypeScript

import * as React from 'react';
import styles from './styles.module.scss';
import { Header } from '~/components/main/Header';
export const MainLayout = ({ children }) => (
<div className={styles.wrapper}>
<div className={styles.content}>
<Header />
{children}
</div>
</div>
);