tooot/src/stacks/Public.jsx

16 lines
325 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 19:15:05 +02:00
name='Public'
content={[
2020-10-26 00:27:53 +01:00
{ title: '跨站', page: 'LocalPublic' },
{ title: '他站', page: 'RemotePublic' }
2020-10-24 16:44:32 +02:00
]}
/>
)
}