1
0
mirror of https://github.com/tooot-app/app synced 2025-03-31 03:40:13 +02:00
tooot/src/stacks/Local.jsx
2020-10-24 19:15:05 +02:00

16 lines
359 B
JavaScript

import React from 'react'
import TimelinesCombined from 'src/stacks/common/TimelinesCombined'
export default function Local () {
return (
<TimelinesCombined
name='Local'
content={[
{ title: '关注', timeline: { endpoint: 'home' } },
{ title: '本站', timeline: { endpoint: 'public', local: true } }
]}
/>
)
}