File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 77 < link rel ='stylesheet ' href ='app.css '>
88 </ head >
99 < body class ='skin-blue fixed sidebar-mini '>
10- < div id ="app "> </ div >
10+ < div id ="app " class =" wrapper " > </ div >
1111 < script src ='app.js '> </ script >
1212 </ body >
1313</ html >
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import React from 'react'
33export default props => (
44 < li >
55 < a href = { props . path } >
6- < i className = { `fa fa-${ props . icon } ` } > </ i > { props . label }
6+ < i className = { `fa fa-${ props . icon } ` } > </ i > < span > { props . label } </ span >
77 </ a >
88 </ li >
99)
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ import React from 'react'
22
33export default props => (
44 < li className = 'treeview' >
5- < a href >
6- < i className = { `fa fa-${ props . icon } ` } > </ i > { props . label }
5+ < a href = { props . path } >
6+ < i className = { `fa fa-${ props . icon } ` } > </ i > < span > { props . label } </ span >
77 < i className = 'fa fa-angle-left pull-right' > </ i >
88 </ a >
99 < ul className = 'treeview-menu' >
You can’t perform that action at this time.
0 commit comments