컴포넌트 별 파일 분리 시행
데이터를 별도 파일로 분리컴포넌트별로 분리된 파일에 저장하고, 필요할 때 병합하는 방식의 사용 각 데이터 파일 작성const AppData = { fileName: "App.js", description: "This is the main entry point of the React application.", code: [ { text: 'import React from "react";', highlight: true }, { text: 'import FileViewer from "./FileViewer";', highlight: false }, { text: 'import files from "./FilesData";', highlight: false }, { text: "",..