import / export
1. import
import * as React from 'react'import { myMember } from "my-module.js";import React from 'react'import { HashRouter as Router } from 'react-router-dom'2. export
export { Child as default, ContainerChild };export { default as Home } from './home'export { Home as default } from './'2.1 컴포넌트
Last updated