mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Signed-off-by: Roman <ixrock@gmail.com> Co-authored-by: Jim Ehrismann <40840436+jim-docker@users.noreply.github.com>
30 lines
973 B
TypeScript
30 lines
973 B
TypeScript
// TODO: figure out how to consume styles / handle import "./support.scss"
|
|
// TODO: support localization / figure out how to extract / consume i18n strings
|
|
|
|
import React from "react"
|
|
import { observer } from "mobx-react"
|
|
import { CommonVars, Component } from "@k8slens/extensions";
|
|
|
|
@observer
|
|
export class Support extends React.Component {
|
|
render() {
|
|
const { PageLayout } = Component;
|
|
const { slackUrl, issuesTrackerUrl } = CommonVars;
|
|
return (
|
|
<PageLayout showOnTop className="Support" header={<h2>Support</h2>}>
|
|
<h2>Community Slack Channel</h2>
|
|
<p>
|
|
Ask a question, see what's being discussed, join the conversation <a href={slackUrl} target="_blank">here</a>
|
|
</p>
|
|
|
|
<h2>Report an Issue</h2>
|
|
<p>
|
|
Review existing issues or open a new one <a href={issuesTrackerUrl} target="_blank">here</a>
|
|
</p>
|
|
|
|
{/*<h2><Trans>Commercial Support</Trans></h2>*/}
|
|
</PageLayout>
|
|
);
|
|
}
|
|
}
|