Files
Lovemap/app/auth/register/hooks/useActions.js
T
2024-09-03 18:18:49 +02:00

13 lines
160 B
JavaScript

export const useActions = ({
usernameRef,
emailRef,
passwordRef,
confpasswordRef,
}) => {
const handleSubmit = () => {};
return {
handleSubmit,
};
};