'use client'; // --------------------------------------------------------------------------------------------------------------------- //! Imports // --------------------------------------------------------------------------------------------------------------------- // --------------------------------------------------- Components ------------------------------------------------------ import Image from 'next/image'; import Link from 'next/link'; // --------------------------------------------------------------------------------------------------------------------- // -------------------------------------------------- Hooks & Utils ---------------------------------------------------- import { useData } from './hooks/useData'; import { useActions } from './hooks/useActions'; // --------------------------------------------------------------------------------------------------------------------- // ------------------------------------------------- Assets & Styles --------------------------------------------------- import '../styles.scss'; // --------------------------------------------------------------------------------------------------------------------- const Register = () => { const { usernameRef, emailRef, passwordRef, confpasswordRef } = useData(); const { handleSubmit } = useActions({ usernameRef, emailRef, passwordRef, confpasswordRef, }); return (
appLogo

Inscription

Se connecter
); }; export default Register;