From 4d3cb8e8e351eb5cca15d6b3e6aef05ce15ba702 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Tue, 30 May 2023 21:32:03 +0200 Subject: [PATCH] Created the InfoArea.jsx --- client/src/common/components/InfoArea/InfoArea.jsx | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 client/src/common/components/InfoArea/InfoArea.jsx diff --git a/client/src/common/components/InfoArea/InfoArea.jsx b/client/src/common/components/InfoArea/InfoArea.jsx new file mode 100644 index 0000000..08697e1 --- /dev/null +++ b/client/src/common/components/InfoArea/InfoArea.jsx @@ -0,0 +1,13 @@ +import "./styles.sass"; + +export const InfoArea = ({title, description, children}) => ( +
+
+

{title}

+
+ {children} +
+
+

{description}

+
+) \ No newline at end of file