more pages

This commit is contained in:
2022-12-11 15:16:21 -06:00
parent 67233cb37d
commit 8b06077359
12 changed files with 278 additions and 23 deletions

10
src/pages/Bots.tsx Normal file
View File

@@ -0,0 +1,10 @@
import { useAuthFetch } from "../authorization"
export function Bots() {
var data = useAuthFetch("/bots", "GET")
return (
<div>
{JSON.stringify(data)}
</div>
)
}