UNPKG

cra-template-orainz

Version:

Orainz base cra template

14 lines (11 loc) 221 B
import React from 'react' import {Header} from '../exporter' const Layout = ({children}) => { return ( <div> <Header/> {children} </div> ) } export {Layout}