mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-30 13:17:13 +01:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
import React from "react";
|
|
import styles from "../styles/Nav.module.scss";
|
|
|
|
export default function Nav() {
|
|
return <nav className={styles.nav}>Nav</nav>;
|
|
}
|