import React, { useState } from 'react'; interface UserAuthFormProps { // Add any props you need } export function UserAuthForm({ }: UserAuthFormProps) { const [isLoading, setIsLoading] = useState(false); const [email, setEmail] = useState(''); async function onSubmit() { setIsLoading(true); setTimeout(() => { setIsLoading(false); }, 3000); } return (
setEmail(e.target.value)} />
Or continue with
); }