8 lines
129 B
TypeScript
8 lines
129 B
TypeScript
|
import type { NextPage } from "next";
|
||
|
|
||
|
const Navigation: NextPage<{}> = () => {
|
||
|
return <></>;
|
||
|
};
|
||
|
|
||
|
export default Navigation;
|