File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -53,14 +53,17 @@ Via `.babelrc` or `babel-loader`.
53
53
// Input Code
54
54
import ' ./' ;
55
55
import ' ./main' ;
56
+ import png from ' ./logo.png' ;
56
57
import { Button } from ' uiw' ;
57
58
import { Select } from ' @uiw/core' ;
59
+ export { oneBackLevel } from ' ..' ;
58
60
59
61
// Output ↓ ↓ ↓ ↓ ↓ ↓
60
62
import ' ./index.js' ;
61
63
import ' ./main.js' ;
62
64
import { Button } from ' uiw' ;
63
65
import { Select } from ' @uiw/core' ;
66
+ export { oneBackLevel } from " ../index.js" ;
64
67
```
65
68
66
69
Output Result
@@ -70,8 +73,11 @@ Output Result
70
73
- import './main';
71
74
+ import './index.js';
72
75
+ import './main.js';
76
+ import png from './logo.png';
73
77
import { Button } from 'uiw';
74
78
import { Select } from '@uiw/core';
79
+ - export { oneBackLevel } from '..';
80
+ + export { oneBackLevel } from "../index.js";
75
81
```
76
82
77
83
## Options
You can’t perform that action at this time.
0 commit comments