input list added, not finished

This commit is contained in:
Lucas Oliveira 2023-02-17 17:17:37 -03:00
commit 714bb260c6
6 changed files with 36 additions and 7 deletions

View file

@ -1,6 +1,6 @@
import { useState } from "react";
export default function Input({value, onChange}){
export default function InputComponent({value, onChange}){
const [myValue, setMyValue] = useState(value ?? "");
return (
<>