2020-10-24 02:47:57 +02:00
|
|
|
import React from 'react'
|
|
|
|
|
2020-10-24 16:44:32 +02:00
|
|
|
import TimelinesCombined from 'src/stacks/common/TimelinesCombined'
|
2020-10-24 02:47:57 +02:00
|
|
|
|
2020-10-24 16:44:32 +02:00
|
|
|
export default function Public () {
|
2020-10-24 02:47:57 +02:00
|
|
|
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 } }
|
|
|
|
]}
|
|
|
|
/>
|
2020-10-24 02:47:57 +02:00
|
|
|
)
|
|
|
|
}
|