Notice
Recent Posts
Recent Comments
Link
목록absolutepath (1)
As i wish
[React] root로 import 하기 (절대경로로 import)
React 프로젝트를 진행하다 보면 component를 나누고 각 component 를 import 하여 사용하게 된다. component 뿐만 아니라 각각의 library 들도 커스텀하게 사용되는 경우가 많은데 이를 사용하기 위해 보통 import {} from 'path' 이런식으로 사용하게 된다. 실제 사용 예 ./components/containers/shop/DownloadCatalog.jsx import React, { useState } from 'react'; import Catalogs from '../../components/shop/Catalogs'; import dummyItems from '../../data/catalogs'; const DownloadCatalog = () =>..
React JS
2020. 2. 11. 15:03