tooot/src/stacks/Public.jsx

16 lines
342 B
React
Raw Normal View History

import React from 'react'
2020-10-24 16:44:32 +02:00
import TimelinesCombined from 'src/stacks/common/TimelinesCombined'
2020-10-24 16:44:32 +02:00
export default function Public () {
return (
2020-10-24 16:44:32 +02:00
<TimelinesCombined
2020-10-24 18:07:09 +02:00
page='Public'
2020-10-24 16:44:32 +02:00
route={[
{ title: '跨站', timeline: { endpoint: 'public' } },
{ title: '他站', timeline: { remote: true } }
]}
/>
)
}