From db50d86921c9502922d3ef72d1d09ef7f08437c3 Mon Sep 17 00:00:00 2001 From: Valtteri Karesto Date: Fri, 19 Nov 2021 16:42:26 +0200 Subject: [PATCH] Add styles to empty pages --- pages/deploy/index.tsx | 5 +---- pages/test/index.tsx | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/pages/deploy/index.tsx b/pages/deploy/index.tsx index f4c4008..3071c93 100644 --- a/pages/deploy/index.tsx +++ b/pages/deploy/index.tsx @@ -1,11 +1,8 @@ -import { useSnapshot } from "valtio"; import Container from "../../components/Container"; -import { state } from "../../state"; const Deploy = () => { - const snap = useSnapshot(state); return ( - This will be the deploy page {JSON.stringify(snap)} + This will be the deploy page ); }; diff --git a/pages/test/index.tsx b/pages/test/index.tsx index da05958..3aedf58 100644 --- a/pages/test/index.tsx +++ b/pages/test/index.tsx @@ -1,7 +1,7 @@ import Container from "../../components/Container"; const Test = () => { - return This will be the test page; + return This will be the test page; }; export default Test;