diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 437134b..1b5412c 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -1,6 +1,7 @@ import { useState } from "react"; import ImageUpload from "./components/ImageUpload"; import CodePreview from "./components/CodePreview"; +import Preview from "./components/Preview"; function App() { const [referenceImages, setReferenceImages] = useState([]); @@ -16,13 +17,14 @@ function App() { /> )} - - {referenceImages.length === 0 && ( <> )} + + + ); } diff --git a/frontend/src/components/Preview.tsx b/frontend/src/components/Preview.tsx new file mode 100644 index 0000000..5cbaf84 --- /dev/null +++ b/frontend/src/components/Preview.tsx @@ -0,0 +1,13 @@ +function Preview() { + return ( +
+ +
+ ); +} +export default Preview;