import React, { forwardRef } from 'react' import { List } from '../..' import type { ListProps } from '../..' export interface NavbarLinksListProps extends ListProps { /** * ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). */ testId?: string } const NavbarLinksList = forwardRef( function NavbarLinksList( { children, testId = 'fs-navbar-links-list', ...otherProps }, ref ) { return ( {children} ) } ) export default NavbarLinksList