File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ import Footer from '../Footer';
14
14
15
15
class Layout extends React . PureComponent {
16
16
static propTypes = {
17
- title : PropTypes . string ,
18
17
classes : PropTypes . shape ( { } ) ,
19
18
children : PropTypes . element . isRequired ,
20
19
navbarPostion : PropTypes . string ,
@@ -50,8 +49,6 @@ class Layout extends React.PureComponent {
50
49
51
50
render ( ) {
52
51
const {
53
- title,
54
- logo, // TODO what kind of logo can we expect?.....
55
52
classes,
56
53
children,
57
54
navbarPostion,
@@ -73,7 +70,7 @@ class Layout extends React.PureComponent {
73
70
74
71
return (
75
72
< div className = { classes . layout } >
76
- < NavBar { ...navBarProps } title = { title } logo = { logo } onIconClick = { this . toggleDrawer } >
73
+ < NavBar { ...navBarProps } onIconClick = { this . toggleDrawer } >
77
74
{ navBarContent }
78
75
</ NavBar >
79
76
{ drawerContent ? (
You can’t perform that action at this time.
0 commit comments