"vscode:/vscode.git/clone" did not exist on "e4d852a0f7cf739aafdfd2082ca096f2580cbf05"
NNItabs.tsx 559 Bytes
Newer Older
1
import * as React from 'react';
2
import { NavLink } from 'react-router-dom';
3
4

const OVERVIEWTABS = (
5
    <NavLink to='/oview' activeClassName='selected' className='common-tabs'>
6
        Overview
7
    </NavLink>
8
9
10
);

const DETAILTABS = (
11
    <NavLink to='/detail' activeClassName='selected' className='common-tabs'>
12
        Trials detail
13
    </NavLink>
14
15
16
);

const NNILOGO = (
17
    <NavLink to='/oview'>
18
        <img src={require('../../static/img/logo.png')} alt='NNI logo' style={{ height: 40 }} />
19
    </NavLink>
20
21
);

22
export { OVERVIEWTABS, DETAILTABS, NNILOGO };