From c25b90d1d6a385820f88cdb6ca43cee5753e48c5 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 6 Jun 2022 11:25:37 -0300 Subject: - removing unused files --- .../anastasis-webui/src/pages/profile/index.tsx | 42 ---------------------- 1 file changed, 42 deletions(-) delete mode 100644 packages/anastasis-webui/src/pages/profile/index.tsx (limited to 'packages/anastasis-webui/src/pages/profile/index.tsx') diff --git a/packages/anastasis-webui/src/pages/profile/index.tsx b/packages/anastasis-webui/src/pages/profile/index.tsx deleted file mode 100644 index bcd26370e..000000000 --- a/packages/anastasis-webui/src/pages/profile/index.tsx +++ /dev/null @@ -1,42 +0,0 @@ -import { FunctionalComponent, h } from "preact"; -import { useEffect, useState } from "preact/hooks"; - -interface Props { - user: string; -} - -const Profile: FunctionalComponent = (props: Props) => { - const { user } = props; - const [time, setTime] = useState(Date.now()); - const [count, setCount] = useState(0); - - // gets called when this route is navigated to - useEffect(() => { - const timer = window.setInterval(() => setTime(Date.now()), 1000); - - // gets called just before navigating away from the route - return (): void => { - clearInterval(timer); - }; - }, []); - - // update the current time - const increment = (): void => { - setCount(count + 1); - }; - - return ( -
-

Profile: {user}

-

This is the user profile for a user named {user}.

- -
Current time: {new Date(time).toLocaleString()}
- -

- Clicked {count} times. -

-
- ); -}; - -export default Profile; -- cgit v1.2.3