/* @flow */ import React from 'react'; import styled from 'styled-components'; import { H1 } from 'components/Heading'; import Icon from 'components/Icon'; import colors from 'config/colors'; import Button from 'components/Button'; import P from 'components/Paragraph'; import Link from 'components/Link'; import ICONS from 'config/icons'; import { getOldWalletUrl } from 'utils/url'; import Content from 'views/Wallet/components/Content'; import { connect } from 'react-redux'; import type { TrezorDevice } from 'flowtype'; type Props = { device: ?TrezorDevice; } const Section = styled.section` display: flex; flex-direction: column; `; const Row = styled.div` flex: 1; display: flex; flex-direction: column; align-items: center; padding: 50px 0; `; const StyledP = styled(P)` padding: 0 0 15px 0; text-align: center; `; const StyledH1 = styled(H1)` text-align: center; `; const DeviceSettings = (props: Props) => (
Device settings is under construction Please use Bitcoin wallet interface to change your device settings
); export default connect(null, null)(DeviceSettings);