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