import { h, type FunctionComponent } from 'preact' import cn from 'classnames' import s from './navigation.module.scss' const NavigationItem: FunctionComponent<{ base: string currentPath: string name: string path: string routes?: ANY[] title: string }> = ({ base = '', currentPath, name, title, path, routes }) => (