mirror of
https://github.com/stoatchat/for-legacy-web.git
synced 2026-03-07 17:35:28 +00:00
19 lines
424 B
TypeScript
19 lines
424 B
TypeScript
import { useContext } from "preact/hooks";
|
|
|
|
import { AppContext } from "../../../context/revoltjs/RevoltClient";
|
|
|
|
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);
|
|
}}
|
|
/>
|
|
);
|
|
}
|