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 = ( NNI logo ); export { OVERVIEWTABS, DETAILTABS, NNILOGO };