You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-wallet/src/views/Wallet/views/UnreadableDevice/index.js

21 lines
438 B

/* @flow */
import React from 'react';
import styled from 'styled-components';
import { Notification } from 'components/Notification';
const Wrapper = styled.div``;
const UnreadableDevice = () => (
<Wrapper>
<Notification
title="Unreadable device"
message="Please install bridge"
type="error"
cancelable={false}
/>
</Wrapper>
);
export default UnreadableDevice;