| 5 | import { Link } from 'react-router-dom' |
| 6 | |
| 7 | export interface MainMenuItem { |
| 8 | name: string |
| 9 | disabled?: boolean |
| 10 | onClick: () => void |
| 11 | } |
| 12 | |
| 13 | export interface MenuBarProps { |
| 14 | children?: React.ReactNode |
nothing calls this directly
no outgoing calls
no test coverage detected