From 07d99cd68d195e471a6177c1a17afab89e575fc8 Mon Sep 17 00:00:00 2001 From: srgooglo Date: Thu, 8 Sep 2022 19:05:38 +0200 Subject: [PATCH] added `notifications` page --- packages/app/src/pages/notifications/index.jsx | 10 ++++++++++ packages/app/src/pages/notifications/index.less | 3 +++ 2 files changed, 13 insertions(+) create mode 100644 packages/app/src/pages/notifications/index.jsx create mode 100644 packages/app/src/pages/notifications/index.less diff --git a/packages/app/src/pages/notifications/index.jsx b/packages/app/src/pages/notifications/index.jsx new file mode 100644 index 00000000..d8551230 --- /dev/null +++ b/packages/app/src/pages/notifications/index.jsx @@ -0,0 +1,10 @@ +import React from "react" + +import "./index.less" + +// TODO: Implement this component +export default (props) => { + return
+ +
+} \ No newline at end of file diff --git a/packages/app/src/pages/notifications/index.less b/packages/app/src/pages/notifications/index.less new file mode 100644 index 00000000..c100702f --- /dev/null +++ b/packages/app/src/pages/notifications/index.less @@ -0,0 +1,3 @@ +.noticationsCenter { + display: flex; +} \ No newline at end of file