// @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 (
); } export default withRouter(HostingSplashCustom);