1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-01-24 15:00:58 +00:00
This commit is contained in:
Vasek Mlejnsky 2018-08-16 15:11:10 +02:00
parent 65d76162cb
commit c743d78bee
3 changed files with 11 additions and 4 deletions

View File

@ -8,7 +8,7 @@ import * as TrezorConnectActions from 'actions/TrezorConnectActions';
import type { MapStateToProps, MapDispatchToProps } from 'react-redux';
import type { State, Dispatch } from 'flowtype';
import LeftNavigation from './LeftNavigation';
import LeftNavigation from './index';
type OwnProps = {

View File

@ -0,0 +1,4 @@
export { default as AccountSelection } from './AccountSelection';
export { default as CoinSelection } from './CoinSelection';
export { DeviceSelect } from './DeviceSelection';
export { DeviceDropdown } from './DeviceSelection';

View File

@ -4,9 +4,12 @@ import { TransitionGroup, CSSTransition } from 'react-transition-group';
import styled from 'styled-components';
import type { TrezorDevice } from 'flowtype';
import { DeviceSelect, DeviceDropdown } from './selection/DeviceSelection';
import AccountSelection from './selection/AccountSelection';
import CoinSelection from './selection/CoinSelection';
import {
AccountSelection,
CoinSelection,
DeviceSelect,
DeviceDropdown,
} from './Selection';
import StickyContainer from './StickyContainer';
import type { Props } from './index';