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/Account/Summary/bitcoin/index.js

15 lines
312 B

/* @flow */
import React from 'react';
import Content from 'views/Wallet/components/Content';
import Title from 'views/Wallet/components/Title';
const BitcoinSummary = () => {
return (
<Content>
<Title>Summary Bitcoin</Title>
</Content>
);
};
export default BitcoinSummary;