[react] json 파일 import 하기

최영진·2023년 1월 20일
0

React

목록 보기
12/16

json 파일 import 하기

이걸 왜 모르지?? 왜 모르겠지?? 라고 느꼈다.
역시나 엄청 간단하였다.

questions.json 파일이 있다면

// questions.json
{
  "questions": [
    {
      "question": "나이가?",
    },
    {
      "question": "성별이?",
    },
//App.ts
import A from "./questions.json"

A.questions[0].question // === 나이가?

받아올 변수명은 자유롭게 가능하다.

profile
안녕하시오.

0개의 댓글