From ae25e7c67e532f7741dd2e156c038d66758a70e1 Mon Sep 17 00:00:00 2001 From: ds Date: Sun, 28 Jun 2026 18:40:08 +0000 Subject: [PATCH] =?UTF-8?q?src/components/Toolbar.tsx=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Toolbar.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/components/Toolbar.tsx 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