Skip to content

Commit 2b33240

Browse files
committed
doc: Update README.md
1 parent d368aec commit 2b33240

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,17 @@ Via `.babelrc` or `babel-loader`.
5353
// Input Code
5454
import './';
5555
import './main';
56+
import png from './logo.png';
5657
import { Button } from 'uiw';
5758
import { Select } from '@uiw/core';
59+
export { oneBackLevel } from '..';
5860

5961
// Output ↓ ↓ ↓ ↓ ↓ ↓
6062
import './index.js';
6163
import './main.js';
6264
import { Button } from 'uiw';
6365
import { Select } from '@uiw/core';
66+
export { oneBackLevel } from "../index.js";
6467
```
6568

6669
Output Result
@@ -70,8 +73,11 @@ Output Result
7073
- import './main';
7174
+ import './index.js';
7275
+ import './main.js';
76+
import png from './logo.png';
7377
import { Button } from 'uiw';
7478
import { Select } from '@uiw/core';
79+
- export { oneBackLevel } from '..';
80+
+ export { oneBackLevel } from "../index.js";
7581
```
7682

7783
## Options

0 commit comments

Comments
 (0)