mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
20 lines
318 B
JavaScript
Executable File
20 lines
318 B
JavaScript
Executable File
import React from "react"
|
|
|
|
import { PostsList } from "@components"
|
|
|
|
import Feed from "@models/feed"
|
|
|
|
import "./index.less"
|
|
|
|
export default class ExplorePosts extends React.Component {
|
|
render() {
|
|
return (
|
|
<PostsList
|
|
disableHasReplies
|
|
loadFromModel={Feed.getGlobalTimelineFeed}
|
|
realtime
|
|
/>
|
|
)
|
|
}
|
|
}
|