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

30 lines
604 B

/* @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;