mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-12 18:29:57 -05:00
16 lines
420 B
TypeScript
16 lines
420 B
TypeScript
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
|
import { useContext } from "preact/hooks";
|
|
import { Form } from "./Form";
|
|
|
|
export function FormCreate() {
|
|
const client = useContext(AppContext);
|
|
|
|
return (
|
|
<Form
|
|
page="create"
|
|
callback={async data => {
|
|
await client.register(import.meta.env.VITE_API_URL, data);
|
|
}}
|
|
/>
|
|
);
|
|
}
|