2019-11-02 23:58:17 +04:00
|
|
|
import { fab } from '@fortawesome/free-brands-svg-icons';
|
2019-10-19 21:24:16 +04:00
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core';
|
|
|
|
|
2019-10-19 22:01:36 +04:00
|
|
|
import Head from './head';
|
|
|
|
import './global.scss';
|
2019-10-19 21:24:16 +04:00
|
|
|
|
|
|
|
const DefaultLayout = (props) => (
|
|
|
|
<div>
|
|
|
|
<Head />
|
|
|
|
{ props.children }
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default DefaultLayout;
|