2016-08-19 13:57:50 +02:00
|
|
|
/*
|
|
|
|
|
*
|
|
|
|
|
* LeftMenu
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2019-04-03 19:02:19 +02:00
|
|
|
import React from 'react';
|
2019-04-03 13:18:43 +02:00
|
|
|
import { withRouter } from 'react-router-dom';
|
2019-02-22 10:05:07 +01:00
|
|
|
import LeftMenuHeader from '../../components/LeftMenuHeader';
|
|
|
|
|
import LeftMenuLinkContainer from '../../components/LeftMenuLinkContainer';
|
|
|
|
|
import LeftMenuFooter from '../../components/LeftMenuFooter';
|
2019-09-17 17:19:10 +02:00
|
|
|
import Wrapper from './Wrapper';
|
2016-08-19 13:57:50 +02:00
|
|
|
|
2018-06-28 12:49:26 +02:00
|
|
|
function LeftMenu(props) {
|
|
|
|
|
return (
|
2019-09-17 17:19:10 +02:00
|
|
|
<Wrapper>
|
2019-04-03 16:40:15 +02:00
|
|
|
<LeftMenuHeader key="header" {...props} />
|
2019-04-03 19:02:19 +02:00
|
|
|
<LeftMenuLinkContainer {...props} />
|
2019-04-03 16:40:15 +02:00
|
|
|
<LeftMenuFooter key="footer" {...props} />
|
2019-09-17 17:19:10 +02:00
|
|
|
</Wrapper>
|
2018-06-28 12:49:26 +02:00
|
|
|
);
|
2016-08-19 13:57:50 +02:00
|
|
|
}
|
|
|
|
|
|
2019-04-03 19:02:19 +02:00
|
|
|
export default withRouter(LeftMenu);
|