diff options
author | Florian Dold <florian@dold.me> | 2021-10-13 19:32:14 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2021-10-13 19:32:26 +0200 |
commit | 3aad5e774dc44fc0d757f6c22152fcbb2b54ca1b (patch) | |
tree | 4839cb4a87ac838f0485ce068237c5067e3ea6fa /packages/anastasis-webui/src/components/header/index.tsx | |
parent | fbf501e727ffe37c30a0ebe038dfb8ae900be749 (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.tsx | 24 |
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; |