Add basic version of post show page

This commit is contained in:
riggraz
2019-09-12 15:51:45 +02:00
parent 5ca113b545
commit f599471af1
18 changed files with 330 additions and 11 deletions

View File

@@ -0,0 +1,23 @@
import * as React from 'react';
import { Provider } from 'react-redux';
import store from '../../stores';
import Post from '../../containers/Post';
import '../../stylesheets/components/Post.scss';
const PostRoot = ({ postId, postStatuses, isLoggedIn, isPowerUser, authenticityToken }) => (
<Provider store={store}>
<Post
postId={postId}
postStatuses={postStatuses}
isLoggedIn={isLoggedIn}
isPowerUser={isPowerUser}
authenticityToken={authenticityToken}
/>
</Provider>
);
export default PostRoot;