| 7 | import { PropsWithChildren } from 'react' |
| 8 | |
| 9 | interface UserLayoutShellProps extends PropsWithChildren { |
| 10 | tags: SelectTag[] |
| 11 | totalBookmarks: number |
| 12 | } |
| 13 | |
| 14 | function isUserCmsPath(pathname: string) { |
| 15 | if (pathname === PageRoutes.User.INDEX) return true |
nothing calls this directly
no outgoing calls
no test coverage detected