diff --git a/src/components/Toolbar.tsx b/src/components/Toolbar.tsx new file mode 100644 index 0000000..68231e6 --- /dev/null +++ b/src/components/Toolbar.tsx @@ -0,0 +1,28 @@ +import React from "react"; + +export default function Toolbar({ + regex, + setRegex, + live, + setLive +}) { + return ( +
+ setRegex(e.target.value)} + style={{ width: "100%" }} + /> + + +
+ ); +} \ No newline at end of file