File tree Expand file tree Collapse file tree 4 files changed +24
-3
lines changed Expand file tree Collapse file tree 4 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 1
- export { } ;
1
+ import SayHello from './components/example' ;
2
+ export { SayHello } ;
3
+ import theme from './theme' ;
4
+ export { theme } ;
Original file line number Diff line number Diff line change 1
1
"use strict" ;
2
+ var __importDefault = ( this && this . __importDefault ) || function ( mod ) {
3
+ return ( mod && mod . __esModule ) ? mod : { "default" : mod } ;
4
+ } ;
2
5
Object . defineProperty ( exports , "__esModule" , { value : true } ) ;
6
+ exports . theme = exports . SayHello = void 0 ;
7
+ // components
8
+ var example_1 = __importDefault ( require ( "./components/example" ) ) ;
9
+ exports . SayHello = example_1 . default ;
10
+ // theme
11
+ var theme_1 = __importDefault ( require ( "./theme" ) ) ;
12
+ exports . theme = theme_1 . default ;
Original file line number Diff line number Diff line change 1
- export { } ;
1
+ import SayHello from './components/example' ;
2
+ export { SayHello } ;
3
+ import theme from './theme' ;
4
+ export { theme } ;
Original file line number Diff line number Diff line change 1
- export { } ;
1
+ // components
2
+ import SayHello from './components/example' ;
3
+ export { SayHello } ;
4
+ // theme
5
+ import theme from './theme' ;
6
+ export { theme } ;
You can’t perform that action at this time.
0 commit comments