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?

JavaScriptAdvent Calendar 2024

Day 6

【JS基礎】デフォルトエクスポートはインポート時に{}を省略できる

Posted at

はじめに

プログラミング学習中の@kat_logと申します。
デフォルトエクスポートとそうでないエクスポートについてメモです笑

デフォルトエクスポートの特徴

  1. インポート時に{ }で囲わない
  2. インポート時に名前を変更できる

サンプル

デフォルトエクスポート

import Button from ./compornent.js

そうでないエクスポート

import { Button } from ./compornent.js

image.png

おわりに

お読みいただきありがとうございました!
小さな気付き・復習でもアウトプットするのは良いんじゃないかと思い書きました!😂

1
0
2

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?