tooot/src/screens/Local.tsx

21 lines
460 B
TypeScript
Raw Normal View History

2020-10-24 16:44:32 +02:00
import React from 'react'
import { useTranslation } from 'react-i18next'
2020-10-24 16:44:32 +02:00
2020-11-23 00:07:32 +01:00
import Timelines from 'src/components/Timelines'
2020-10-24 16:44:32 +02:00
2020-11-21 13:19:05 +01:00
const ScreenLocal: React.FC = () => {
const { t } = useTranslation()
2020-10-24 16:44:32 +02:00
return (
2020-11-21 13:19:05 +01:00
<Timelines
2020-11-24 00:18:47 +01:00
name='Screen-Local-Root'
2020-10-24 19:15:05 +02:00
content={[
{ title: t('headers.local.segments.left'), page: 'Following' },
{ title: t('headers.local.segments.right'), page: 'Local' }
2020-10-24 16:44:32 +02:00
]}
/>
)
}
2020-10-31 21:04:46 +01:00
2020-11-21 13:19:05 +01:00
export default ScreenLocal