tooot/src/screens/Local.tsx

20 lines
444 B
TypeScript
Raw Normal View History

2021-01-07 22:18:14 +01:00
import Timelines from '@components/Timelines'
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-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
2021-01-10 02:12:14 +01:00
name='Local'
2020-10-24 19:15:05 +02:00
content={[
2020-11-30 00:24:53 +01:00
{ title: t('local:heading.segments.left'), page: 'Following' },
{ title: t('local:heading.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