From 2ebb7c0bf7d2bb5db7404ff881d3d538aac1b390 Mon Sep 17 00:00:00 2001
From: Jacopo Gasparetto <jacopo.gasparetto@cnaf.infn.it>
Date: Sat, 15 Apr 2023 16:42:00 +0200
Subject: [PATCH] Add user name to drawer

---
 frontend/src/components/Page.tsx | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/frontend/src/components/Page.tsx b/frontend/src/components/Page.tsx
index b407250..43c1412 100644
--- a/frontend/src/components/Page.tsx
+++ b/frontend/src/components/Page.tsx
@@ -2,8 +2,9 @@ import { Drawer } from "./Drawer";
 import { Title } from "./Title";
 
 type Props = {
+  user?: string,
   title: string,
-  [children:string]: any
+  [children: string]: any
 };
 
 export const Page = (props: Props) => {
-- 
GitLab