From 8288a9469c64328996249b1b9fa66e80000ae718 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Mon, 12 Sep 2022 00:58:18 +0200 Subject: [PATCH] Created the Button component --- 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..c78a78b --- /dev/null +++ b/src/common/components/Button/Button.jsx @@ -0,0 +1,9 @@ +import "./styles.sass"; + +const Button = (props) => { + return ( + + ) +} + +export default Button; \ No newline at end of file