Vulcan/packages/example-forum/lib/components/posts/PostsSingle.jsx
2017-09-04 18:37:21 +09:00

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);