From b658cde1842200731f75649bf293761668a25fa5 Mon Sep 17 00:00:00 2001 From: Vivian Phung Date: Mon, 24 Jun 2024 18:35:16 -0400 Subject: [PATCH] feat: `Settings` screen for org --- .../frontend/src/pages/org-slug/Settings.tsx | 20 ++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/packages/frontend/src/pages/org-slug/Settings.tsx b/packages/frontend/src/pages/org-slug/Settings.tsx index 818b0837..f843c856 100644 --- a/packages/frontend/src/pages/org-slug/Settings.tsx +++ b/packages/frontend/src/pages/org-slug/Settings.tsx @@ -1,5 +1,19 @@ -const Settings = () => { - return
Settings page
; -}; +import { Heading } from 'components/shared/Heading'; +const Settings = () => { + return ( +
+ {/* Header */} +
+
+
+ + Settings + +
+
+
+
+ ); +}; export default Settings;