I just started using TypeScript with Next. What does this do?
import { NextPage } from 'next';
export const Page: NextPage = () => {}
I looked at the docs but it does really give a good explanation in what it does.
I am guessing by the name that it routes pages. Can someone please explain what this does?
Thank you.