aboutsummaryrefslogtreecommitdiff
path: root/packages/anastasis-webui/src/components/header/index.tsx
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2021-10-13 19:32:14 +0200
committerFlorian Dold <florian@dold.me>2021-10-13 19:32:26 +0200
commit3aad5e774dc44fc0d757f6c22152fcbb2b54ca1b (patch)
tree4839cb4a87ac838f0485ce068237c5067e3ea6fa /packages/anastasis-webui/src/components/header/index.tsx
parentfbf501e727ffe37c30a0ebe038dfb8ae900be749 (diff)
common anstasis frame
Diffstat (limited to 'packages/anastasis-webui/src/components/header/index.tsx')
-rw-r--r--packages/anastasis-webui/src/components/header/index.tsx24
1 files changed, 0 insertions, 24 deletions
diff --git a/packages/anastasis-webui/src/components/header/index.tsx b/packages/anastasis-webui/src/components/header/index.tsx
deleted file mode 100644
index f2b6fe8ad..000000000
--- a/packages/anastasis-webui/src/components/header/index.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import { FunctionalComponent, h } from 'preact';
-import { Link } from 'preact-router/match';
-import style from './style.css';
-
-const Header: FunctionalComponent = () => {
- return (
- <header class={style.header}>
- <h1>Preact App</h1>
- <nav>
- <Link activeClassName={style.active} href="/">
- Home
- </Link>
- <Link activeClassName={style.active} href="/profile">
- Me
- </Link>
- <Link activeClassName={style.active} href="/profile/john">
- John
- </Link>
- </nav>
- </header>
- );
-};
-
-export default Header;