From 5883d42d800c7b444c59d626bcaa5abca7dc83d0 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 19 Oct 2021 10:56:52 -0300 Subject: add template from merchant backoffice --- .../anastasis-webui/src/routes/profile/index.tsx | 44 ---------------------- 1 file changed, 44 deletions(-) delete mode 100644 packages/anastasis-webui/src/routes/profile/index.tsx (limited to 'packages/anastasis-webui/src/routes/profile/index.tsx') diff --git a/packages/anastasis-webui/src/routes/profile/index.tsx b/packages/anastasis-webui/src/routes/profile/index.tsx deleted file mode 100644 index 023b56c9d..000000000 --- a/packages/anastasis-webui/src/routes/profile/index.tsx +++ /dev/null @@ -1,44 +0,0 @@ -import { FunctionalComponent, h } from 'preact'; -import { useEffect, useState } from 'preact/hooks'; -import style from './style.css'; - -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