diff --git a/app/src/pages/dashboard.tsx b/app/src/pages/dashboard.tsx index 8992e9b..0b591bf 100644 --- a/app/src/pages/dashboard.tsx +++ b/app/src/pages/dashboard.tsx @@ -1,4 +1,4 @@ -import { createSignal, createEffect } from "solid-js"; +import { createSignal, createEffect, Show } from "solid-js"; import { getCurrentUser, signOutUser } from "../service/auth"; import { getDocumentsWithQuery, firestore } from "../service/firestore"; import AccountContent from "../contents/account/accountContent"; @@ -41,7 +41,14 @@ const Dashboard = () => {
+ +
+
+
+ + {AccountContent(accountInfo() !== null, accountInfo())} +
);