| 19 | import LogoutButton from './sidebar/LogoutButton'; |
| 20 | |
| 21 | interface AppWrapperProps { |
| 22 | children: ReactNode; |
| 23 | className?: string; |
| 24 | } |
| 25 | |
| 26 | const AppWrapper: FC<AppWrapperProps> = observer(({children, className}: AppWrapperProps) => { |
| 27 | const navigate = useNavigate(); |
nothing calls this directly
no outgoing calls
no test coverage detected