feat(web): add page titles (#170)

* feat(web): add page titles

* add html title
This commit is contained in:
41666 2021-03-13 21:17:00 -05:00 committed by GitHub
parent 2d9d70734b
commit 637be8bfa1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 52 additions and 19 deletions

View file

@ -1,4 +1,5 @@
import * as React from 'react';
import { Title } from '../../utils/metaTitle';
const NewSession = () => {
React.useEffect(() => {
@ -12,7 +13,12 @@ const NewSession = () => {
}
});
return <div>Redirecting you...</div>;
return (
<>
<Title title="Logging you into Roleypoly..." />
<div>Redirecting you...</div>
</>
);
};
export default NewSession;