From 791bd10804fb41e5832df46cd8a180acf0e81559 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 18 Feb 2023 23:34:23 +0100 Subject: [PATCH] Created the SpeedtestDialog.jsx --- .../SpeedtestDialog/SpeedtestDialog.jsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 client/src/common/components/SpeedtestDialog/SpeedtestDialog.jsx diff --git a/client/src/common/components/SpeedtestDialog/SpeedtestDialog.jsx b/client/src/common/components/SpeedtestDialog/SpeedtestDialog.jsx new file mode 100644 index 00000000..dad6d9bf --- /dev/null +++ b/client/src/common/components/SpeedtestDialog/SpeedtestDialog.jsx @@ -0,0 +1,17 @@ +import {DialogProvider} from "@/common/contexts/Dialog"; +import "./styles.sass"; + +export const SpeedtestDialog = (props) => { + + return ( + <> + {props.isOpen && +
+
+
+
+
+ } + + ) +} \ No newline at end of file