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-06-04 04:06:51 +07:00

16 lines
297 B
TypeScript

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