1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 05:16:41 +07:00
vault-frontend/src/containers/main/MainLayout/index.tsx
2019-10-13 17:47:13 +07:00

13 lines
301 B
TypeScript

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