1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-13 10:08:09 +00:00
trezor-wallet/src/views/Wallet/components/TopNavigationDeviceSettings/index.js
2018-09-05 13:36:19 +02:00

30 lines
604 B
JavaScript

/* @flow */
import styled from 'styled-components';
import React, { Component } from 'react';
import { NavLink } from 'react-router-dom';
type Props = {
pathname: string;
}
type State = {
style: {
width: number,
left: number
};
}
const Wrapper = styled.div``;
const AccountTabs = (props: any): any => {
const urlParams = props.match.params;
const basePath = `/device/${urlParams.device}/network/${urlParams.network}/account/${urlParams.account}`;
return (
<Wrapper>
Device settings
</Wrapper>
);
};
export default AccountTabs;