mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
11 lines
No EOL
322 B
JavaScript
11 lines
No EOL
322 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.PostsPage postId={props.params._id} />
|
|
};
|
|
|
|
PostsSingle.displayName = "PostsSingle";
|
|
|
|
Telescope.registerComponent('PostsSingle', PostsSingle); |