2019-01-18 17:17:48 +00:00
|
|
|
import React, { Component } from 'react';
|
2019-01-22 14:54:18 +00:00
|
|
|
import { Trans, withNamespaces } from 'react-i18next';
|
2019-01-18 17:17:48 +00:00
|
|
|
import Controls from './Controls';
|
|
|
|
|
|
|
|
class Greeting extends Component {
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="setup__step">
|
|
|
|
<div className="setup__group">
|
|
|
|
<h1 className="setup__title">
|
|
|
|
<Trans>install_welcome_title</Trans>
|
|
|
|
</h1>
|
2019-02-07 12:17:27 +00:00
|
|
|
<p className="setup__desc text-center">
|
2019-01-18 17:17:48 +00:00
|
|
|
<Trans>install_welcome_desc</Trans>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
<Controls />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-22 14:54:18 +00:00
|
|
|
export default withNamespaces()(Greeting);
|