forked from BLC/sgeUpdated
Add 'sge-frontend/' from commit '5fa787e054b25ac53edc7ff0275ea7960a709401'
git-subtree-dir: sge-frontend git-subtree-mainline:876c278ac4git-subtree-split:5fa787e054
This commit is contained in:
20
sge-frontend/src/layouts/HorizontalLayout.js
Normal file
20
sge-frontend/src/layouts/HorizontalLayout.js
Normal file
@@ -0,0 +1,20 @@
|
||||
// !Do not remove the Layout import
|
||||
import Layout from '../@core/layouts/HorizontalLayout';
|
||||
|
||||
// ** Components
|
||||
// import CustomMenu from './components/Menu'
|
||||
// import CustomNavbar from './components/Navbar'
|
||||
// import CustomFooter from './components/Footer'
|
||||
|
||||
const HorizontalLayout = props => (
|
||||
<Layout
|
||||
// menu={props => <CustomMenu {...props} />}
|
||||
// navbar={props => <CustomNavbar {...props} />}
|
||||
// footer={props => <CustomFooter {...props} />}
|
||||
{...props}
|
||||
>
|
||||
{props.children}
|
||||
</Layout>
|
||||
)
|
||||
|
||||
export default HorizontalLayout
|
||||
20
sge-frontend/src/layouts/VerticalLayout.js
Normal file
20
sge-frontend/src/layouts/VerticalLayout.js
Normal file
@@ -0,0 +1,20 @@
|
||||
// !Do not remove the Layout import
|
||||
import Layout from '../@core/layouts/VerticalLayout';
|
||||
|
||||
// ** Components
|
||||
// import CustomMenu from './components/Menu'
|
||||
// import CustomNavbar from './components/Navbar'
|
||||
// import CustomFooter from './components/Footer'
|
||||
|
||||
const VerticalLayout = props => (
|
||||
<Layout
|
||||
// menu={props => <CustomMenu {...props} />}
|
||||
// navbar={props => <CustomNavbar {...props} />}
|
||||
// footer={props => <CustomFooter {...props} />}
|
||||
{...props}
|
||||
>
|
||||
{props.children}
|
||||
</Layout>
|
||||
)
|
||||
|
||||
export default VerticalLayout
|
||||
6
sge-frontend/src/layouts/components/Footer.js
Normal file
6
sge-frontend/src/layouts/components/Footer.js
Normal file
@@ -0,0 +1,6 @@
|
||||
const CustomFooter = props => {
|
||||
console.log('Footer:', props)
|
||||
return <h6>Custom Footer</h6>
|
||||
}
|
||||
|
||||
export default CustomFooter
|
||||
6
sge-frontend/src/layouts/components/Navbar.js
Normal file
6
sge-frontend/src/layouts/components/Navbar.js
Normal file
@@ -0,0 +1,6 @@
|
||||
const CustomNavbar = props => {
|
||||
console.log('Navbar:', props)
|
||||
return <h6>Custom Navbar</h6>
|
||||
}
|
||||
|
||||
export default CustomNavbar
|
||||
Reference in New Issue
Block a user