| 12345678910111213141516171819202122232425 |
- import React from 'react'
- import {
- TheContent,
- TheSidebar,
- TheFooter,
- TheHeader
- } from './index'
-
- const TheLayout = () => {
-
- return (
- <div className="c-app c-default-layout">
- <TheSidebar/>
- <div className="c-wrapper">
- <TheHeader/>
- <div className="c-body">
- <TheContent/>
- </div>
- <TheFooter/>
- </div>
- </div>
- )
- }
-
- export default TheLayout
|