Files
DefectingCat.github.io/pages/_document.tsx
DefectingCat 5e6efb9976 Update search box
* add forward ref
* add get posts API
* Add search loading card
* Search page done
* Update build script
2022-02-09 17:59:33 +08:00

14 lines
233 B
TypeScript

import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}