1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00
vault-frontend/src/containers/MainLayout/index.tsx
2019-07-23 19:00:48 +07:00

17 lines
352 B
TypeScript

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