Port Login UI

This commit is contained in:
Paul
2021-06-18 20:21:54 +01:00
parent aa81ebb298
commit 68a35751b3
18 changed files with 749 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
import { RevoltClient } from "../../../context/revoltjs/RevoltClient";
import { Form } from "./Form";
export function FormCreate() {
return (
<Form
page="create"
callback={async data => {
await RevoltClient.register(process.env.API_SERVER as string, data);
}}
/>
);
}