| 19 | import { useNavigationPanel } from './hook/useNavigationPanel'; |
| 20 | |
| 21 | interface PageProps { |
| 22 | title: string; |
| 23 | description: string; |
| 24 | onPress: () => void; |
| 25 | buttonTitle: string; |
| 26 | } |
| 27 | const Page = ({ title, description, onPress, buttonTitle }: PageProps) => { |
| 28 | return ( |
| 29 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…