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/js/components/Main.js

21 lines
475 B

/* @flow */
'use strict';
import React, { Component } from 'react';
export default class Main extends Component {
render() {
return (
<main>
<section className="methods">
<ul className="accounts">
</ul>
</section>
<section className="method-content">
{ this.props.children }
</section>
</main>
);
}
}