99ceaadf8b
* add hosting to first run, enable auto hosting * take welcomeVersion out of sync * app strings fix * recommended view hosting limit * small changes * fixes * appstrings * small fix
31 lines
935 B
JavaScript
31 lines
935 B
JavaScript
// @flow
|
|
import React from 'react';
|
|
import Button from 'component/button';
|
|
import { Form } from 'component/common/form-components/form';
|
|
import SettingStorage from 'component/settingStorage';
|
|
import { withRouter } from 'react-router-dom';
|
|
|
|
type Props = {
|
|
handleNextPage: () => void,
|
|
handleGoBack: () => void,
|
|
};
|
|
|
|
function HostingSplashCustom(props: Props) {
|
|
const { handleNextPage, handleGoBack } = props;
|
|
|
|
return (
|
|
<section className="main--contained">
|
|
<div className={'first-run__wrapper'}>
|
|
<SettingStorage isWelcome />
|
|
<Form onSubmit={handleNextPage} className="section__body">
|
|
<div className={'card__actions'}>
|
|
<Button button="primary" label={__(`Let's go`)} type="submit" />
|
|
<Button button="link" label={__(`Go back`)} onClick={handleGoBack} />
|
|
</div>
|
|
</Form>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|
|
|
|
export default withRouter(HostingSplashCustom);
|