1
Fork 0

Add title to page

This commit is contained in:
Tobias Berger 2022-02-07 14:38:57 +00:00 committed by GitHub
parent 5f69d817bf
commit 0e3197aad3

View file

@ -1,3 +1,19 @@
import "../styles.scss";
export { default } from "next/app";
import App from "next/app";
import Head from "next/head";
class CustomApp extends App {
render() {
return (
<>
<Head>
<title key="page-title">DRS Chat</title>
</Head>
{super.render()}
</>
);
}
}
export default CustomApp;