/* @flow */ import styled from 'styled-components'; import { H4, Button, P } from 'trezor-ui-components'; import { getOldWalletUrl } from 'utils/url'; import React from 'react'; import { FormattedMessage } from 'react-intl'; import l10nCommonMessages from 'views/common.messages'; import type { TrezorDevice } from 'flowtype'; import l10nMessages from './index.messages'; type Props = { device: ?TrezorDevice, }; const Wrapper = styled.div` display: flex; flex-direction: column; padding: 40px 35px 40px 35px; `; const Row = styled.div` display: flex; flex-direction: column; align-items: center; padding: 50px 0; `; const A = styled.a``; const StyledParagraph = styled(P)` && { padding: 0 0 15px 0; text-align: center; } `; const Initialize = (props: Props) => (

); export default Initialize;