CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/pages/support/tickets.tsx
Views: 687
1
import { Layout } from "antd";
2
import Header from "components/landing/header";
3
import Head from "components/landing/head";
4
import Footer from "components/landing/footer";
5
import Tickets from "components/support/tickets";
6
import { Customize } from "lib/customize";
7
import withCustomize from "lib/with-customize";
8
9
export default function Preferences({ customize }) {
10
return (
11
<Customize value={customize}>
12
<Head title="Your Support Tickets" />
13
<Layout>
14
<Header page="support" subPage="tickets" />
15
<Tickets />
16
<Footer />
17
</Layout>
18
</Customize>
19
);
20
}
21
22
export async function getServerSideProps(context) {
23
return await withCustomize({ context });
24
}
25
26