code 를 배열로 변환하여 각 줄에 대한 메타데이터를 포함한다.
const files = [ { 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: "", highlight: false }, { text: "const App = ()..