UNPKG
react-lte
Version:
latest (0.1.0-dev)
0.1.0-dev
AdminLTE v3 template for ReactJS
pattisahusiwa.github.io/react-lte
react-lte
/
src
/
demo
/
layout
/
ContentWrapper.jsx
13 lines
(11 loc)
•
272 B
JSX
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
React
from
'react'
;
import
ContentHeader
from
'./ContentHeader'
;
import
MainContent
from
'./MainContent'
;
export
default
function
ContentWrapper
(
) {
return
(
<
main
className
=
"content-wrapper"
>
<
ContentHeader
/>
<
MainContent
/>
</
main
>
); }