@@ -15,26 +15,26 @@ var __metadata = (this && this.__metadata) || function (k, v) {
1515} ;
1616var React = require ( 'react' ) ;
1717var react_redux_1 = require ( 'react-redux' ) ;
18- var index_1 = require ( './index' ) ;
19- var Routes_1 = require ( './Routes' ) ;
18+ var index_1 = require ( '.. /index' ) ;
19+ var Routes_1 = require ( '.. /Routes' ) ;
2020var Drawer_1 = require ( 'material-ui/Drawer' ) ;
21- var App = ( function ( _super ) {
22- __extends ( App , _super ) ;
23- function App ( ) {
21+ var SidePanel = ( function ( _super ) {
22+ __extends ( SidePanel , _super ) ;
23+ function SidePanel ( ) {
2424_super . apply ( this , arguments ) ;
2525}
26- App . prototype . render = function ( ) {
26+ SidePanel . prototype . render = function ( ) {
2727var windowToggle = this . props . windowToggle ;
2828return ( React . createElement ( "section" , null , React . createElement ( Drawer_1 . default , { width :400 , openSecondary :true , open :windowToggle } , React . createElement ( "div" , { className :'cr-bg' } , React . createElement ( index_1 . AppMenu , null ) , React . createElement ( Routes_1 . default , null ) ) ) , React . createElement ( index_1 . Alert , null ) ) ) ;
2929} ;
30- App = __decorate ( [
30+ SidePanel = __decorate ( [
3131react_redux_1 . connect ( function ( state ) { return ( {
3232windowToggle :state . windowToggle ,
3333} ) ; } ) ,
3434__metadata ( 'design:paramtypes' , [ ] )
35- ] , App ) ;
36- return App ;
35+ ] , SidePanel ) ;
36+ return SidePanel ;
3737} ( React . Component ) ) ;
3838Object . defineProperty ( exports , "__esModule" , { value :true } ) ;
39- exports . default = App ;
39+ exports . default = SidePanel ;
4040;