import * as React from 'react'; import { Provider } from 'react-redux'; import { Store } from 'redux'; import UsersSiteSettings from '../../../containers/UsersSiteSettings'; import createStoreHelper from '../../../helpers/createStore'; import { UserRoles } from '../../../interfaces/IUser'; import { State } from '../../../reducers/rootReducer'; interface Props { currentUserEmail: string; currentUserRole: UserRoles; authenticityToken: string; } class UsersSiteSettingsRoot extends React.Component { store: Store; constructor(props: Props) { super(props); this.store = createStoreHelper(); } render() { return ( ); } } export default UsersSiteSettingsRoot;