File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ export { default as AppBar } from './components/NavBar';
4
4
export { default as Footer } from './components/Footer' ;
5
5
6
6
// I am changing the name from NavBar to AppBar
7
- export { default as BasicAppBar } from './templates/AppBar/BasicNavBar ' ;
7
+ export { default as BasicAppBar } from './templates/AppBar/BasicAppBar ' ;
8
8
export { default as TwoRowsAppBar } from './templates/AppBar/TwoRowsAppBar' ;
9
9
export { default as BasicFooter } from './templates/Footer/BasicFooter' ;
10
10
export { default as BasicDrawer } from './templates/Drawer/BasicDrawer' ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import compose from 'recompose/compose';
13
13
14
14
import styles from './styles' ;
15
15
16
- class BasicNavBar extends React . PureComponent {
16
+ class BasicAppBar extends React . PureComponent {
17
17
static propTypes = {
18
18
links : PropTypes . arrayOf ( PropTypes . shape ( { } ) ) ,
19
19
classes : PropTypes . shape ( { } ) ,
@@ -66,4 +66,4 @@ class BasicNavBar extends React.PureComponent {
66
66
}
67
67
}
68
68
69
- export default compose ( withStyles ( styles ) , withWidth ( ) ) ( BasicNavBar ) ;
69
+ export default compose ( withStyles ( styles ) , withWidth ( ) ) ( BasicAppBar ) ;
Original file line number Diff line number Diff line change
1
+ import BasicAppBar from './BasicAppBar' ;
2
+
3
+ export default BasicAppBar ;
File renamed without changes.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments