import { useState } from 'react' import { Button } from '~/components/ui/button' export const FormRegister = () => { const [showPassword, setShowPassword] = useState(false) return (
{/* Input Email / No Telepon */}
{/* Input Password */}
{/* Reinput Password */}
{/* No Telepon */}
{/* Subscribe*/}
{/* Tombol Masuk */}
) }