import { MenuContainer, MenuRow } from '@components/Menu' import { TabMeStackScreenProps } from '@utils/navigation/navigators' import { useListsQuery } from '@utils/queryHooks/lists' import React from 'react' const TabMeLists: 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 TabMeLists