temp image upload

This commit is contained in:
2024-05-24 09:47:24 +03:00
parent a21807c5a6
commit f41999dfbc
8 changed files with 112 additions and 3 deletions

View File

@@ -1,4 +1,5 @@
import {createLazyFileRoute} from "@tanstack/react-router";
import ImageDropzone from "../components/ImageDropzone/ImageDropzone.tsx";
export const Route = createLazyFileRoute('/test')({
component: TestPage
@@ -8,7 +9,9 @@ export const Route = createLazyFileRoute('/test')({
function TestPage() {
return (
<>
<ImageDropzone
onDrop={(data) => {}}
/>
</>
);
}