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라는뜻.