mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-17 21:06:04 +00:00
initial json schema form implementation
This commit is contained in:
15
app/src/ui/routes/media/media.index.tsx
Normal file
15
app/src/ui/routes/media/media.index.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Media } from "ui/elements";
|
||||
import { useBrowserTitle } from "ui/hooks/use-browser-title";
|
||||
import * as AppShell from "ui/layouts/AppShell/AppShell";
|
||||
|
||||
export function MediaIndex() {
|
||||
useBrowserTitle(["Media"]);
|
||||
|
||||
return (
|
||||
<AppShell.Scrollable>
|
||||
<div className="flex flex-1 p-3">
|
||||
<Media.Dropzone />
|
||||
</div>
|
||||
</AppShell.Scrollable>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user