正文從這開始~
在React中,從其他檔案中匯入元件:
A
export function Button() {}
B
import {Button} from './another-file'
下面的例子是從一個名為another-file.js的檔案中匯入元件。
another-file.js
//