mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
css grid to pack my layout
This commit is contained in:
parent
44e10599d7
commit
debb0640da
20 changed files with 1212 additions and 23 deletions
11
src/containers/MainLayout/index.tsx
Normal file
11
src/containers/MainLayout/index.tsx
Normal file
|
@ -0,0 +1,11 @@
|
|||
import * as React from 'react';
|
||||
import { Header } from "$components/main/Header";
|
||||
|
||||
const style = require('./style.scss');
|
||||
|
||||
export const MainLayout = ({ children }) => (
|
||||
<div className={style.wrapper}>
|
||||
<Header />
|
||||
{children}
|
||||
</div>
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue