Vulcan/packages/vulcan-base-components/lib/posts/PostsSingle.jsx

11 lines
295 B
React
Raw Normal View History

2017-03-23 16:27:59 +09:00
import { Components, registerComponent } from 'meteor/vulcan:core';
import React from 'react';
2016-06-11 16:36:18 +09:00
const PostsSingle = (props, context) => {
return <Components.PostsPage documentId={props.params._id} />
};
2016-06-11 16:36:18 +09:00
PostsSingle.displayName = "PostsSingle";
2016-06-11 16:36:18 +09:00
registerComponent('PostsSingle', PostsSingle);