1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

`export * from` で export した内容を部分的に上書きする

Last updated at Posted at 2022-02-21

export * from で export した内容を部分的に上書きする

Material-UI などをプロジェクト内で export * from '@mui/material' などとする必要がありそのようにしたが、
部分的にローカルで定義した内容で export を上書きする必要がありどのようにするか迷いました。

対応

export-all-from-material-ui-partially-override
// @mui/material の中身をすべて export
export * from '@mui/material'
// ローカルで定義したコンポーネント
export Button from './Button'

上記のようにすることで @mui/materialButton をローカルのもので export する形になりました。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?