summaryrefslogtreecommitdiffstats
path: root/webapp/components/tutorial/tutorial_view.jsx
blob: d9e0ef40dba31ddd7de14adb77771b65cf78a5a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

import React from 'react';

import TutorialIntroScreens from './tutorial_intro_screens.jsx';

export default class TutorialView extends React.Component {
    render() {
        return (
            <div
                id='app-content'
                className='app__content'
            >
                <TutorialIntroScreens/>
            </div>
        );
    }
}