2019-06-22 22:23:02 +00:00
|
|
|
import * as React from 'react';
|
2019-06-23 01:09:42 +00:00
|
|
|
import { NavLink } from 'react-router-dom';
|
2019-06-22 22:23:02 +00:00
|
|
|
|
|
|
|
export default class ServerOverviewContainer extends React.PureComponent {
|
|
|
|
render () {
|
2019-06-23 01:09:42 +00:00
|
|
|
return (
|
|
|
|
<div className={'mt-10'}>
|
|
|
|
<NavLink className={'text-neutral-100 text-sm block mb-2 no-underline hover:underline'} to={'/account'}>Account</NavLink>
|
|
|
|
<NavLink className={'text-neutral-100 text-sm block mb-2 no-underline hover:underline'} to={'/account/design'}>Design</NavLink>
|
|
|
|
</div>
|
|
|
|
);
|
2019-06-22 22:23:02 +00:00
|
|
|
}
|
|
|
|
}
|