tooot/src/screens/Tabs/Me/Favourites.tsx

15 lines
358 B
TypeScript
Raw Normal View History

2021-02-08 23:47:20 +01:00
import Timeline from '@components/Timeline'
2021-02-27 16:33:54 +01:00
import { QueryKeyTimeline } from '@utils/queryHooks/timeline'
2020-11-22 00:46:23 +01:00
import React from 'react'
2021-02-08 23:47:20 +01:00
const ScreenMeFavourites = React.memo(
() => {
2021-02-27 16:33:54 +01:00
const queryKey: QueryKeyTimeline = ['Timeline', { page: 'Favourites' }]
return <Timeline queryKey={queryKey} />
2021-02-08 23:47:20 +01:00
},
() => true
)
2020-11-22 00:46:23 +01:00
export default ScreenMeFavourites