diff --git a/src/app/components/IECPage.tsx b/src/app/components/IECPage.tsx index 7cbcd8d..372c986 100644 --- a/src/app/components/IECPage.tsx +++ b/src/app/components/IECPage.tsx @@ -1,9 +1,14 @@ +import { useState } from 'react'; +import { FolderOpen } from 'lucide-react'; +import FileBrowser from './FileBrowser'; + interface IECPageProps { config: any; setConfig: (config: any) => void; } export default function IECPage({ config, setConfig }: IECPageProps) { + const [showFileBrowser, setShowFileBrowser] = useState(false); const updateSetting = (path: string[], value: any) => { const newConfig = JSON.parse(JSON.stringify(config)); let current = newConfig; @@ -57,13 +62,33 @@ export default function IECPage({ config, setConfig }: IECPageProps) {