diff options
Diffstat (limited to 'app/src/components/Navbar.tsx')
-rw-r--r-- | app/src/components/Navbar.tsx | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/src/components/Navbar.tsx b/app/src/components/Navbar.tsx new file mode 100644 index 0000000..7ffb514 --- /dev/null +++ b/app/src/components/Navbar.tsx @@ -0,0 +1,11 @@ +import styles from '../styles/Navbar.module.css'; + +function Navbar() { + return ( + <nav className={styles.navbar}> + <span>LinkLogger</span> + </nav> + ); +} + +export default Navbar; |