import NavTabs from 'sentry/components/navTabs'; export default { title: 'Views/Tabs', component: NavTabs, }; export const Default = () => { return (
  • link one
  • link two
  • ); }; Default.storyName = 'Default'; export const Underlined = () => { return (
  • link one
  • link two
  • ); }; Underlined.storyName = 'Underlined'; Underlined.parameters = { docs: { description: { story: 'NavTabs with bottom border applied', }, }, };