import { Input, Button, Link, Select, SelectItem, DatePicker, } from "@heroui/react"; import { IconMail, IconLock } from "@tabler/icons-react"; import { useState } from "react"; export default function SignupView({ onLogin, email = "", }: { onLogin: () => void; email: string; }) { const [emailValue, setEmailValue] = useState(email); return (
Welcome!
Become a membership today!
Already have an account?
{ onLogin(); }} className="text-sm" > Login