import React from 'react'; import styles from './TabNav.scss'; function TabNav ( props: { /** * Use when the TabNav is used with section headers or for non page-header content. */ alignLeft?: boolean, /** * Child node to be rendered as the inner HTML of the component. */ children: React.ReactNode, } ) { return ( ); } function TabNavItem ( props: { /** * Child node to be rendered as the inner HTML of the component. */ children: React.ReactNode, /** * Whether this is the currently active tab. Applies * `aria-current="true"`. Only one tab may be active at a time. */ isActive: boolean, } ) { return