From 1b0eb4f7f3340ac323d7ecda9304713e0e3e780a Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Wed, 24 Apr 2024 00:51:12 +0200 Subject: [PATCH] Global Variables Page created --- .../src/pages/GlobalVariablesPage/index.tsx | 23 +++++++++++++++++++ src/frontend/src/routes.tsx | 9 ++++++++ 2 files changed, 32 insertions(+) create mode 100644 src/frontend/src/pages/GlobalVariablesPage/index.tsx diff --git a/src/frontend/src/pages/GlobalVariablesPage/index.tsx b/src/frontend/src/pages/GlobalVariablesPage/index.tsx new file mode 100644 index 000000000..19cb2ce27 --- /dev/null +++ b/src/frontend/src/pages/GlobalVariablesPage/index.tsx @@ -0,0 +1,23 @@ +import IconComponent from "../../components/genericIconComponent"; +import { Button } from "../../components/ui/button"; + +import PageLayout from "../../components/pageLayout"; + +export default function GlobalVariablesPage() { + return ( + + + + } + > +
Page
+
+ ); +} diff --git a/src/frontend/src/routes.tsx b/src/frontend/src/routes.tsx index b48e5147d..239a7d870 100644 --- a/src/frontend/src/routes.tsx +++ b/src/frontend/src/routes.tsx @@ -17,6 +17,7 @@ import ViewPage from "./pages/ViewPage"; import DeleteAccountPage from "./pages/deleteAccountPage"; import LoginPage from "./pages/loginPage"; import SignUp from "./pages/signUpPage"; +import GlobalVariablesPage from "./pages/GlobalVariablesPage"; const Router = () => { const navigate = useNavigate(); @@ -126,6 +127,14 @@ const Router = () => { } /> + + + + } + />