Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 254 Bytes

File metadata and controls

12 lines (10 loc) · 254 Bytes

타입 모듈화: import&export 문법

export 변수, 함수
//라이브러리 로딩
import 변수명 from '라이브러리 이름';

//변수, 함수 import
import {불러올 변수 또는 함수 이름} from '파일 상대 경로';