15 lines
443 B
TypeScript
15 lines
443 B
TypeScript
import { getServerSideProps as _getServerSideProps } from "@lib/team/[slug]/getServerSideProps";
|
|
import withEmbedSsr from "@lib/withEmbedSsr";
|
|
|
|
import PageWrapper from "@components/PageWrapper";
|
|
|
|
import TeamPage, { type PageProps } from "~/team/team-view";
|
|
|
|
const Page = (props: PageProps) => <TeamPage {...props} />;
|
|
|
|
Page.PageWrapper = PageWrapper;
|
|
|
|
export default Page;
|
|
|
|
export const getServerSideProps = withEmbedSsr(_getServerSideProps);
|