import { useState } from 'react' import { Button } from '~/components/ui/button' import { useNewsContext } from '~/contexts/news' export const FormRegister = () => { const { setIsLoginOpen, setIsRegisterOpen } = useNewsContext() const [showPassword, setShowPassword] = useState(false) return (
{/* Input Email / No Telepon */}
{/* Input Password */}
{/* Reinput Password */}
{/* No Telepon */}
{/* Subscribe*/}
{/* Tombol Masuk */}
{/* Link Login */}
Sudah punya akun?{' '}
) }