| 14 | import z from "zod"; |
| 15 | |
| 16 | interface Props { |
| 17 | onSubmit: (data: LoginSchema) => void; |
| 18 | loading?: boolean; |
| 19 | formId?: string; |
| 20 | } |
| 21 | |
| 22 | export const LoginForm = (props: Props) => { |
| 23 | const { onSubmit, loading, formId } = props; |
nothing calls this directly
no outgoing calls
no test coverage detected