19 lines
481 B
TypeScript
19 lines
481 B
TypeScript
import React from "react";
|
|
import { NextPage } from "next";
|
|
import Head from "next/head";
|
|
import GuildroomPageView from "@views/GuildroomPage/GuildroomPageView";
|
|
import PageWrapper from "@views/common/PageWrapper";
|
|
|
|
const GuildroomPage: NextPage = () => (
|
|
<>
|
|
<Head>
|
|
<link rel="canonical" href={`${process.env.NEXT_PUBLIC_SITE_URL}/kilta/guildroom`} />
|
|
</Head>
|
|
<PageWrapper>
|
|
<GuildroomPageView />
|
|
</PageWrapper>
|
|
</>
|
|
);
|
|
|
|
export default GuildroomPage;
|