강의

멘토링

커뮤니티

Inflearn Community Q&A

heedo's profile image
heedo

asked

Node and React series that you can learn by following - Creating a YouTube site

Creating a Video Upload FORM (2)

import {} 괄호에대해서

Written on

·

328

2

import React from 'react'
import {Typography, Button, Form , message, Input, Icon} from 'antd';
import Dropzone from 'react-dropzone';
const {TextArea} = Input;
const {Title} = Typography;

imort 할때 {}의 사용 유무 차이는 뭔지 알 수 있을까요??

mongodbnodejsreduxreact

Answer 1

3

John Ahn님의 프로필 이미지
John Ahn
Instructor

안녕하세요 do wang님 ! 

import {Button} from 

antd이 라는 모듈안에서 

Button이 default로 export 되어있다면  import Button from 를 해주시면 되고 
어떤 파일안에 여러가지를 정의해줬다면 그때는  import {} from 으로 해주셔야 합니다 

https://ko.javascript.info/import-export

여기가면 정리가 잘되어있네요 ^^  수고하세요 ! 

heedo's profile image
heedo

asked

Ask a question