1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-03-10 21:56:05 +00:00
trezor-wallet/src/js/components/landing/TrezorConnectError.js
2018-04-16 23:19:50 +02:00

12 lines
214 B
JavaScript

/* @flow */
'use strict';
import React from 'react';
export default (props: {}): React$Element<string> => {
return (
<section className="landing">
connect ERROR
</section>
);
}