// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved. // See LICENSE.txt for license information. import $ from 'jquery'; import PropTypes from 'prop-types'; import React from 'react'; import TutorialIntroScreens from './tutorial_intro_screens'; export default class TutorialView extends React.Component { componentDidMount() { if (this.props.isRoot) { $('body').addClass('app__body'); } } componentWillUnmount() { if (this.props.isRoot) { $('body').removeClass('app__body'); } } render() { return (