2016-08-08 11:18:21 +09:00
|
|
|
import Telescope from 'meteor/nova:lib';
|
2016-06-11 16:36:18 +09:00
|
|
|
import React from 'react';
|
|
|
|
import { DocumentContainer } from "meteor/utilities:react-list-container";
|
2016-06-23 11:40:35 +09:00
|
|
|
import Posts from "meteor/nova:posts";
|
2016-06-11 16:36:18 +09:00
|
|
|
|
|
|
|
const PostsSingle = (props, context) => {
|
2016-10-27 16:06:42 +09:00
|
|
|
return <Telescope.components.PostsSingleContainer postId={props.params._id} component={Telescope.components.PostsPage} />
|
2016-06-11 16:36:18 +09:00
|
|
|
};
|
|
|
|
|
|
|
|
PostsSingle.displayName = "PostsSingle";
|
|
|
|
|
2016-10-27 15:29:15 +09:00
|
|
|
module.exports = PostsSingle;
|