tooot/src/stacks/Local.jsx

16 lines
314 B
React
Raw Normal View History

2020-10-24 16:44:32 +02:00
import React from 'react'
import TimelinesCombined from 'src/stacks/common/TimelinesCombined'
export default function Local () {
return (
<TimelinesCombined
2020-10-24 19:15:05 +02:00
name='Local'
content={[
2020-10-26 00:27:53 +01:00
{ title: '关注', page: 'Following' },
{ title: '本站', page: 'Local' }
2020-10-24 16:44:32 +02:00
]}
/>
)
}