Skip to content

Instantly share code, notes, and snippets.

View rafaelszp's full-sized avatar

Rafael Pereira rafaelszp

View GitHub Profile
import { useState } from "react";
export const useInput = initialValue => {
const [value, setValue] = useState(initialValue);
return {
value,
setValue,
reset: () => setValue(""),
hooks: {