diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 74556cf..6932925 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -16,7 +16,7 @@ function App() { } return ( -
+

Drag & Drop a Screenshot

{referenceImages.length > 0 && ( Reference @@ -29,7 +29,7 @@ function App() { )} - +
); } diff --git a/frontend/src/components/Preview.tsx b/frontend/src/components/Preview.tsx index 5cbaf84..c8508b1 100644 --- a/frontend/src/components/Preview.tsx +++ b/frontend/src/components/Preview.tsx @@ -1,11 +1,15 @@ -function Preview() { +interface Props { + code: string; +} + +function Preview({ code }: Props) { return (
);