forked from LAION-AI/Open-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparameters.tsx
36 lines (33 loc) · 1.06 KB
/
parameters.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { Card, CardBody, CircularProgress } from "@chakra-ui/react";
import Head from "next/head";
import { AdminArea } from "src/components/AdminArea";
import { AdminLayout } from "src/components/Layout";
import { get } from "src/lib/api";
import useSWRImmutable from "swr/immutable";
export { getStaticProps } from "src/lib/defaultServerSideProps";
export default function Parameters() {
const { data, isLoading, error } = useSWRImmutable("/api/admin/parameters", get);
return (
<>
<Head>
<title>Parameters - Open Assistant</title>
</Head>
<AdminArea>
<Card>
<CardBody>
{isLoading && <CircularProgress isIndeterminate></CircularProgress>}
{error && "Unable to load data"}
{data && (
<Card variant="json" overflowX="auto">
<CardBody>
<pre>{JSON.stringify(data, null, 2)}</pre>
</CardBody>
</Card>
)}
</CardBody>
</Card>
</AdminArea>
</>
);
}
Parameters.getLayout = AdminLayout;