1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00
vault-frontend/src/containers/main/MainLayout/index.tsx
2020-11-06 12:15:07 +07:00

13 lines
303 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>
);