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