13 lines
160 B
JavaScript
13 lines
160 B
JavaScript
export const useActions = ({
|
|
usernameRef,
|
|
emailRef,
|
|
passwordRef,
|
|
confpasswordRef,
|
|
}) => {
|
|
const handleSubmit = () => {};
|
|
|
|
return {
|
|
handleSubmit,
|
|
};
|
|
};
|