diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2018-10-08 09:24:03 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2018-11-01 09:32:49 +0100 |
commit | 3d4819e32de3ebfb68291de0467f1e2360d0d2cf (patch) | |
tree | 43daa77cfd99b7ba9ac26b780fb3d5cfd5c5e893 /server/sonar-web/src/main/js/apps/about/sonarcloud/SonarLintIntegration.tsx | |
parent | 35229142c6eaf780a70fcf838280cc7aee4fe515 (diff) | |
download | sonarqube-3d4819e32de3ebfb68291de0467f1e2360d0d2cf.tar.gz sonarqube-3d4819e32de3ebfb68291de0467f1e2360d0d2cf.zip |
SONARCLOUD-132 New homepage
* Create sticky menu bar
* Add languages section animation
* Add figures section counter animation
* Animate featured projects carrousel
Diffstat (limited to 'server/sonar-web/src/main/js/apps/about/sonarcloud/SonarLintIntegration.tsx')
-rw-r--r-- | server/sonar-web/src/main/js/apps/about/sonarcloud/SonarLintIntegration.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/js/apps/about/sonarcloud/SonarLintIntegration.tsx b/server/sonar-web/src/main/js/apps/about/sonarcloud/SonarLintIntegration.tsx index 69a0bceabbe..d3c6eba303a 100644 --- a/server/sonar-web/src/main/js/apps/about/sonarcloud/SonarLintIntegration.tsx +++ b/server/sonar-web/src/main/js/apps/about/sonarcloud/SonarLintIntegration.tsx @@ -18,16 +18,16 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ import * as React from 'react'; -import SonarCloudPage from './SonarCloudPage'; -import SQStartUsing from './SQStartUsing'; -import SQTopNav from './SQTopNav'; +import SQPageContainer from './components/SQPageContainer'; +import SQStartUsing from './components/SQStartUsing'; +import SQTopNav from './components/SQTopNav'; import { isLoggedIn } from '../../../app/types'; import { getBaseUrl } from '../../../helpers/urls'; import './style.css'; export default function SonarLintIntegration() { return ( - <SonarCloudPage> + <SQPageContainer> {({ currentUser }) => ( <div className="page page-limited sc-page"> <SQTopNav /> @@ -95,6 +95,6 @@ export default function SonarLintIntegration() { {!isLoggedIn(currentUser) && <SQStartUsing />} </div> )} - </SonarCloudPage> + </SQPageContainer> ); } |