| 11 | import { useFocusEffect, useNavigation } from "@react-navigation/native" |
| 12 | |
| 13 | interface ScreenWithSidebarProps { |
| 14 | title: string |
| 15 | children: React.ReactNode |
| 16 | } |
| 17 | |
| 18 | export const ScreenWithSidebar: FC<ScreenWithSidebarProps> = ({ title, children }) => { |
| 19 | const [open, setOpen] = useState(false) |
nothing calls this directly
no outgoing calls
no test coverage detected