Initial commit

This commit is contained in:
2025-05-11 20:32:14 +08:00
commit d97247159f
80 changed files with 13013 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import ResourcesView from "../components/resources_view.tsx";
import {network} from "../network/network.ts";
export default function HomePage() {
return <ResourcesView loader={(page) => network.getResources(page)}></ResourcesView>
}