frontpage/components/Blog/Navigation.tsx

8 lines
129 B
TypeScript
Raw Normal View History

2022-09-30 16:14:30 +02:00
import type { NextPage } from "next";
const Navigation: NextPage<{}> = () => {
return <></>;
};
export default Navigation;