1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-03-11 14:16:04 +00:00
trezor-wallet/src/js/components/landing/TrezorConnectError.js

12 lines
214 B
JavaScript
Raw Normal View History

2018-02-20 09:30:36 +00:00
/* @flow */
'use strict';
import React from 'react';
2018-04-16 21:19:50 +00:00
export default (props: {}): React$Element<string> => {
2018-02-20 09:30:36 +00:00
return (
<section className="landing">
connect ERROR
</section>
);
}