mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
33 lines
788 B
TypeScript
33 lines
788 B
TypeScript
import * as React from 'react';
|
|
import { Provider } from 'react-redux';
|
|
import { Store } from 'redux';
|
|
|
|
import PostStatusesSiteSettings from '../../../containers/PostStatusesSiteSettings';
|
|
import createStoreHelper from '../../../helpers/createStore';
|
|
import { State } from '../../../reducers/rootReducer';
|
|
|
|
interface Props {
|
|
authenticityToken: string;
|
|
}
|
|
|
|
class PostStatusesSiteSettingsRoot extends React.Component<Props> {
|
|
store: Store<State, any>;
|
|
|
|
constructor(props: Props) {
|
|
super(props);
|
|
|
|
this.store = createStoreHelper();
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Provider store={this.store}>
|
|
<PostStatusesSiteSettings
|
|
authenticityToken={this.props.authenticityToken}
|
|
/>
|
|
</Provider>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default PostStatusesSiteSettingsRoot; |