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