React技巧之匯入元件

2022-07-01 06:02:29

正文從這開始~

總覽

在React中,從其他檔案中匯入元件:

  1. A檔案中匯出元件。比如說,export function Button() {}
  2. B檔案中匯入元件。比如說,import {Button} from './another-file'
  3. B檔案中使用匯入的元件。

命名匯入匯出

下面的例子是從一個名為another-file.js的檔案中匯入元件。

//