mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
iOS almost working
This commit is contained in:
13
src/screens/Tabs/Shared/Toot.tsx
Normal file
13
src/screens/Tabs/Shared/Toot.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import Timeline from '@components/Timelines/Timeline'
|
||||
import React from 'react'
|
||||
import { SharedTootProp } from './sharedScreens'
|
||||
|
||||
const TabSharedToot: React.FC<SharedTootProp> = ({
|
||||
route: {
|
||||
params: { toot }
|
||||
}
|
||||
}) => {
|
||||
return <Timeline page='Toot' toot={toot.id} disableRefresh disableInfinity />
|
||||
}
|
||||
|
||||
export default TabSharedToot
|
Reference in New Issue
Block a user