mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
20 lines
474 B
JavaScript
20 lines
474 B
JavaScript
// 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>
|
|
);
|
|
}
|
|
}
|