From 45ea0ca0e88a6eb16d9c471a2e5d4fbda63b515c Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 13 Nov 2023 11:47:36 +0100 Subject: [PATCH] Created the Button.jsx --- src/common/components/Button/Button.jsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/common/components/Button/Button.jsx diff --git a/src/common/components/Button/Button.jsx b/src/common/components/Button/Button.jsx new file mode 100644 index 0000000..14779bc --- /dev/null +++ b/src/common/components/Button/Button.jsx @@ -0,0 +1,9 @@ +import "./styles.sass"; + +export const Button = ({children, onClick}) => { + return ( + + ); +} \ No newline at end of file