tooot/src/screens/Local.tsx

20 lines
444 B
TypeScript

import Timelines from '@components/Timelines'
import React from 'react'
import { useTranslation } from 'react-i18next'
const ScreenLocal: React.FC = () => {
const { t } = useTranslation()
return (
<Timelines
name='Local'
content={[
{ title: t('local:heading.segments.left'), page: 'Following' },
{ title: t('local:heading.segments.right'), page: 'Local' }
]}
/>
)
}
export default ScreenLocal