import React, { Component } from 'react'; import { FormattedMessage as Message } from 'react-intl'; import Helmet from 'react-helmet'; import buttons from 'components/ui/buttons.scss'; import { Panel, PanelBody, PanelFooter } from 'components/ui/Panel'; import { Input } from 'components/ui/Form'; import styles from './activation.scss'; import {helpLinks as helpLinksStyles} from './helpLinks.scss'; import messages from './Activation.messages'; export default function Activation() { var Title = () => ( // TODO: separate component for PageTitle {(msg) => {msg}} ); Title.goBack = '/register'; return { Title, Body: () => (
erickskrauch@yandex.ru) }} />
), Footer: (props) => ( ), Links: () => ( ) }; } export class _Activation extends Component { displayName = 'Activation'; render() { return (
{(msg) => } }>
erickskrauch@yandex.ru) }} />
); } }