You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819202122232425
  1. import React from 'react'
  2. import {
  3. TheContent,
  4. TheSidebar,
  5. TheFooter,
  6. TheHeader
  7. } from './index'
  8. const TheLayout = () => {
  9. return (
  10. <div className="c-app c-default-layout">
  11. <TheSidebar/>
  12. <div className="c-wrapper">
  13. <TheHeader/>
  14. <div className="c-body">
  15. <TheContent/>
  16. </div>
  17. <TheFooter/>
  18. </div>
  19. </div>
  20. )
  21. }
  22. export default TheLayout