-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rename containers from 'Default' to 'The', small fixes
- Loading branch information
Showing
16 changed files
with
76 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
import React from 'react' | ||
import { | ||
TheContent, | ||
TheSidebar, | ||
TheAside, | ||
TheFooter, | ||
TheHeader | ||
} from './index' | ||
|
||
const TheLayout = () => { | ||
|
||
return ( | ||
<div className="c-app c-default-layout"> | ||
<TheSidebar/> | ||
<TheAside/> | ||
<div className="c-wrapper"> | ||
<TheHeader/> | ||
<div className="c-body"> | ||
<TheContent/> | ||
</div> | ||
<TheFooter/> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default TheLayout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
import DefaultAside from './DefaultAside' | ||
import DefaultContent from './DefaultContent' | ||
import DefaultFooter from './DefaultFooter' | ||
import DefaultHeader from './DefaultHeader' | ||
import DefaultHeaderDropdown from './DefaultHeaderDropdown' | ||
import DefaultHeaderDropdownMssg from './DefaultHeaderDropdownMssg' | ||
import DefaultHeaderDropdownNotif from './DefaultHeaderDropdownNotif' | ||
import DefaultHeaderDropdownTasks from './DefaultHeaderDropdownTasks' | ||
import DefaultLayout from './DefaultLayout' | ||
import DefaultSidebar from './DefaultSidebar' | ||
import TheAside from './TheAside' | ||
import TheContent from './TheContent' | ||
import TheFooter from './TheFooter' | ||
import TheHeader from './TheHeader' | ||
import TheHeaderDropdown from './TheHeaderDropdown' | ||
import TheHeaderDropdownMssg from './TheHeaderDropdownMssg' | ||
import TheHeaderDropdownNotif from './TheHeaderDropdownNotif' | ||
import TheHeaderDropdownTasks from './TheHeaderDropdownTasks' | ||
import TheLayout from './TheLayout' | ||
import TheSidebar from './TheSidebar' | ||
|
||
export { | ||
DefaultAside, | ||
DefaultContent, | ||
DefaultFooter, | ||
DefaultHeader, | ||
DefaultHeaderDropdown, | ||
DefaultHeaderDropdownMssg, | ||
DefaultHeaderDropdownNotif, | ||
DefaultHeaderDropdownTasks, | ||
DefaultLayout, | ||
DefaultSidebar | ||
TheAside, | ||
TheContent, | ||
TheFooter, | ||
TheHeader, | ||
TheHeaderDropdown, | ||
TheHeaderDropdownMssg, | ||
TheHeaderDropdownNotif, | ||
TheHeaderDropdownTasks, | ||
TheLayout, | ||
TheSidebar | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters