UNPKG
cra-template-orainz
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Orainz base cra template
cra-template-orainz
/
template
/
src
/
components
/
layout
/
Layout.js
14 lines
(11 loc)
•
221 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
React
from
'react'
import
{
Header
}
from
'../exporter'
const
Layout
= (
{children}
) => {
return
(
<
div
>
<
Header
/>
{children}
</
div
>
) }
export
{
Layout
}