Skip to content
Snippets Groups Projects
Commit 41c5a80a authored by Chif Gergő's avatar Chif Gergő
Browse files

Add imports to MobileContainer, modify Header in App.js

parent d6ea73a8
No related branches found
No related tags found
No related merge requests found
......@@ -5,12 +5,11 @@ import Footer from './Footer';
const App = () => (
<div style={{ minHeight: '100%', position: 'relative' }}>
<header id='header' >
<Header />
</header>
<main id='main' style={{ minHeight: '100%', position: 'relative' }}>
<Main />
</main>
<Header className='header'>
<main id='main' style={{ minHeight: '100%', position: 'relative' }}>
<Main />
</main>
</Header>
<footer id='footer' style={{ position: 'absolute', width: '100%', bottom: '0' }}>
<Footer />
</footer>
......
......@@ -6,8 +6,11 @@ import {
Button,
Segment,
Image,
Responsive,
Sidebar,
Icon,
} from 'semantic-ui-react';
import KSZKlogo from './images/kszk_logo.svg';
import KSZKlogo from '../images/kszk_logo.svg';
class MobileContainer extends Component {
......@@ -23,7 +26,7 @@ class MobileContainer extends Component {
render() {
const visible = this.state.sidebarVisible;
const { children, user } = this.props;
const { children, user, menuItems } = this.props;
return(
<Responsive maxWidth={768}>
<Segment inverted textAlign='center' vertical>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment