LaLiga-FrontEnd/src/pages/_document.tsx

15 lines
243 B
TypeScript

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