mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-11 03:24:16 +00:00
22 lines
473 B
JavaScript
Executable File
22 lines
473 B
JavaScript
Executable File
import React from "react"
|
|
|
|
import { PostsList } from "components"
|
|
|
|
import Post from "models/post"
|
|
|
|
import "./index.less"
|
|
|
|
export default class ExplorePosts extends React.Component {
|
|
render() {
|
|
return <PostsList
|
|
loadFromModel={Post.getExplorePosts}
|
|
watchTimeline={[
|
|
"post.new",
|
|
"post.delete",
|
|
"feed.new",
|
|
"feed.delete",
|
|
]}
|
|
realtime
|
|
/>
|
|
}
|
|
} |