diff --git a/src/common/components/TextInput/TextInput.jsx b/src/common/components/TextInput/TextInput.jsx new file mode 100644 index 0000000..35988dc --- /dev/null +++ b/src/common/components/TextInput/TextInput.jsx @@ -0,0 +1,9 @@ +import "./styles.sass"; + +export const TextInput = ({text, setText, id, type = "text"}) => { + const updateText = (event) => setText(event.target.value); + + return ( + + ) +} \ No newline at end of file