티스토리 뷰

Javascript

ES6의 Bare Import란?

심재철 2020. 6. 9. 13:05

평범한 import 방식

import React from 'react'; // Import the default export from a module.
import { Component, PropTypes } from 'react'; // Import named exports from a module.
import * as Redux from 'react-redux'; // Named import - grab everything from the module and assign it to "redux".

Bare Import

import 'react';

이런식으로 모듈을 가져오기만 하고 변수에 할당하지 않는것을 Bare Import라고 한다.

Bare는 "없는" 이라는 뜻이다.

 

Bare Import => 변수가 없는 import라는뜻.

 

 

댓글
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/04   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30
글 보관함