Fist setup js

This commit is contained in:
frits000000
2020-11-20 10:43:23 +01:00
parent 8bd07dc209
commit 55b7b765eb
25 changed files with 182 additions and 181 deletions
@@ -0,0 +1,15 @@
//Modules
import react from 'react';
//Components
import { Header } from '../index';
const DefaultLayout = () => {
return(
<div className="MainLayout">
<Header/>
</div>
)
}
export default DefaultLayout;