10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
import { useAuthFetch } from "../authorization"
|
|
|
|
export function Bots() {
|
|
var data = useAuthFetch("/bots", "GET")
|
|
return (
|
|
<div>
|
|
{JSON.stringify(data)}
|
|
</div>
|
|
)
|
|
} |