import { NextPage } from 'next'; interface Props { userAgent?: string; } const Page: NextPage<Props> = ({ userAgent }) => <main>Your user agent: ...
確定! 回上一頁