// @flow import React from 'react'; import Button from 'component/button'; import { withRouter } from 'react-router-dom'; import I18nMessage from 'component/i18nMessage'; // $FlowFixMe cannot resolve ... import YrblHappy from 'static/img/yrblhappy.svg'; type Props = { setWelcomeVersion: (number) => void, setShareDataInternal: (boolean) => void, authenticated: boolean, handleNextPage: () => void, diskSpace?: DiskSpace, }; function WelcomePage(props: Props) { const { handleNextPage } = props; return (

{__('Welcome')}

{__(`You've entered the land of content freedom! Let's make sure everything is ship shape.`)}

, }} > By continuing, you agree to the %terms%

); } export default withRouter(WelcomePage);