mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
11 lines
No EOL
349 B
JavaScript
11 lines
No EOL
349 B
JavaScript
import Telescope from 'meteor/nova:lib';
|
|
import React from 'react';
|
|
import Posts from "meteor/nova:posts";
|
|
|
|
const PostsSingle = (props, context) => {
|
|
return <Telescope.components.PostsSingleContainer postId={props.params._id} component={Telescope.components.PostsPage} />
|
|
};
|
|
|
|
PostsSingle.displayName = "PostsSingle";
|
|
|
|
module.exports = PostsSingle; |