From de43eb05d2e43ab31effce3dcca62ad91a556b26 Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Sun, 5 Oct 2025 16:42:02 -0700 Subject: Init --- src/components/toolbar/Toolbar.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/components/toolbar/Toolbar.tsx (limited to 'src/components/toolbar/Toolbar.tsx') diff --git a/src/components/toolbar/Toolbar.tsx b/src/components/toolbar/Toolbar.tsx new file mode 100644 index 0000000..b2217e0 --- /dev/null +++ b/src/components/toolbar/Toolbar.tsx @@ -0,0 +1,9 @@ +import React from 'react'; + +export interface ToolbarProps { + children?: React.ReactNode; +} + +export const Toolbar: React.FC = ({ children }) => { + return
{children}
; +}; -- cgit v1.2.3-70-g09d2