From cf38a5303eede60e831de9c27452f2222d233317 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Wed, 28 Dec 2022 03:37:26 +0100 Subject: [PATCH] Created the InputGroup.jsx --- .../components/InputGroup/InputGroup.jsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 admin/src/pages/Home/components/LinkDialog/components/InputGroup/InputGroup.jsx diff --git a/admin/src/pages/Home/components/LinkDialog/components/InputGroup/InputGroup.jsx b/admin/src/pages/Home/components/LinkDialog/components/InputGroup/InputGroup.jsx new file mode 100644 index 0000000..159eda5 --- /dev/null +++ b/admin/src/pages/Home/components/LinkDialog/components/InputGroup/InputGroup.jsx @@ -0,0 +1,14 @@ +import TextBox from "@/common/components/TextBox"; +import "./styles.sass"; + +export const InputGroup = (props) => { + return ( +
+
+

{props.title}

+

{props.description}

+
+ +
+ ); +} \ No newline at end of file