NNItabs.tsx 608 Bytes
Newer Older
1
import * as React from 'react';
2
import { NavLink } from 'react-router-dom';
3

4
5
import { getPrefix } from '../../static/function';

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

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

const NNILOGO = (
19
    <NavLink to='/oview'>
20
        <img src={(getPrefix() || '') + '/logo.png'} alt='NNI logo' style={{ height: 40 }} />
21
    </NavLink>
22
23
);

24
export { OVERVIEWTABS, DETAILTABS, NNILOGO };