tooot/src/screens/Shared/Toot.tsx

14 lines
343 B
TypeScript
Raw Normal View History

2020-12-13 14:04:25 +01:00
import Timeline from '@components/Timelines/Timeline'
2021-01-07 22:18:14 +01:00
import React from 'react'
import { SharedTootProp } from './sharedScreens'
2020-10-29 14:52:28 +01:00
2021-01-07 22:18:14 +01:00
const ScreenSharedToot: React.FC<SharedTootProp> = ({
2020-10-29 14:52:28 +01:00
route: {
params: { toot }
}
2020-10-31 21:04:46 +01:00
}) => {
return <Timeline page='Toot' toot={toot.id} disableRefresh disableInfinity />
2020-10-29 14:52:28 +01:00
}
2020-10-31 21:04:46 +01:00
2020-11-21 13:19:05 +01:00
export default ScreenSharedToot