import { MenuRow } from '@components/Menu' import { StackScreenProps } from '@react-navigation/stack' import { useListsQuery } from '@utils/queryHooks/lists' import React from 'react' const ScreenMeLists: React.FC> = ({ navigation }) => { const { data } = useListsQuery({}) return ( <> {data?.map((d: Mastodon.List, i: number) => ( navigation.navigate('Tab-Me-Lists-List', { list: d.id, title: d.title }) } /> ))} ) } export default ScreenMeLists