MCPcopy Index your code
hub / github.com/tinyauthapp/tinyauth / Props

Interface Props

frontend/src/components/auth/login-form.tsx:16–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14import z from "zod";
15
16interface Props {
17 onSubmit: (data: LoginSchema) => void;
18 loading?: boolean;
19 formId?: string;
20}
21
22export const LoginForm = (props: Props) => {
23 const { onSubmit, loading, formId } = props;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected