aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/pages
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-06-06 11:25:37 -0300
committerSebastian <sebasjm@gmail.com>2022-06-06 11:25:37 -0300
commitc25b90d1d6a385820f88cdb6ca43cee5753e48c5 (patch)
tree41cb0a02405158a69c9a697174211e694cd9d4d5 /packages/anastasis-webui/src/pages
parente96358c5554794903f451b77555382d3622a9ece (diff)
downloadwallet-core-c25b90d1d6a385820f88cdb6ca43cee5753e48c5.tar.xz
- removing unused files
Diffstat (limited to 'packages/anastasis-webui/src/pages')
-rw-r--r--packages/anastasis-webui/src/pages/notfound/index.tsx16
-rw-r--r--packages/anastasis-webui/src/pages/notfound/style.css0
-rw-r--r--packages/anastasis-webui/src/pages/profile/index.tsx42
-rw-r--r--packages/anastasis-webui/src/pages/profile/style.css0
4 files changed, 0 insertions, 58 deletions
diff --git a/packages/anastasis-webui/src/pages/notfound/index.tsx b/packages/anastasis-webui/src/pages/notfound/index.tsx
deleted file mode 100644
index bb22429b0..000000000
--- a/packages/anastasis-webui/src/pages/notfound/index.tsx
+++ /dev/null
@@ -1,16 +0,0 @@
-import { FunctionalComponent, h } from "preact";
-import { Link } from "preact-router/match";
-
-const Notfound: FunctionalComponent = () => {
- return (
- <div>
- <h1>Error 404</h1>
- <p>That page doesn&apos;t exist.</p>
- <Link href="/">
- <h4>Back to Home</h4>
- </Link>
- </div>
- );
-};
-
-export default Notfound;
diff --git a/packages/anastasis-webui/src/pages/notfound/style.css b/packages/anastasis-webui/src/pages/notfound/style.css
deleted file mode 100644
index e69de29bb..000000000
--- a/packages/anastasis-webui/src/pages/notfound/style.css
+++ /dev/null
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: Props) => {
- const { user } = props;
- const [time, setTime] = useState<number>(Date.now());
- const [count, setCount] = useState<number>(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 (
- <div>
- <h1>Profile: {user}</h1>
- <p>This is the user profile for a user named {user}.</p>
-
- <div>Current time: {new Date(time).toLocaleString()}</div>
-
- <p>
- <button onClick={increment}>Click Me</button> Clicked {count} times.
- </p>
- </div>
- );
-};
-
-export default Profile;
diff --git a/packages/anastasis-webui/src/pages/profile/style.css b/packages/anastasis-webui/src/pages/profile/style.css
deleted file mode 100644
index e69de29bb..000000000
--- a/packages/anastasis-webui/src/pages/profile/style.css
+++ /dev/null