import * as React from 'react';
import { NavLink } from 'react-router-dom';
import { getPrefix } from '@static/function';
const activeClassName = 'selected';
const OVERVIEWTABS = (
(isActive ? `${activeClassName} link` : 'link')}>
Overview
);
const DETAILTABS = (
(isActive ? `${activeClassName} link` : 'link')}>
Trials detail
);
const NNILOGO = (
);
export { OVERVIEWTABS, DETAILTABS, NNILOGO };