forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSupportSection.tsx
30 lines (27 loc) · 1.07 KB
/
SupportSection.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { Survey } from 'components/Survey'
import { Contribution } from 'components/Contribution'
import { Support } from 'components/Support'
import { useMainContext } from './context/MainContext'
import { useVersion } from 'components/hooks/useVersion'
export const SupportSection = () => {
const { currentVersion } = useVersion()
const { enterpriseServerReleases } = useMainContext()
const isDeprecated =
enterpriseServerReleases.isOldestReleaseDeprecated &&
currentVersion.includes(enterpriseServerReleases.oldestSupported)
return (
<section className="mt-lg-9 py-7 px-3 px-md-6 no-print color-bg-tertiary">
<div className="container-xl gutter-lg-spacious clearfix">
<div className="col-12 col-lg-6 col-xl-4 mb-6 mb-xl-0 float-left">
{!isDeprecated && <Survey />}
</div>
<div className="col-12 col-lg-6 col-xl-4 mb-6 mb-xl-0 float-left">
{!isDeprecated && <Contribution />}
</div>
<div className="col-12 col-lg-12 col-xl-4 float-left">
<Support />
</div>
</div>
</section>
)
}