formatting and linting

This commit is contained in:
Valeriy
2018-09-13 22:09:12 +03:00
committed by Mrugesh Mohapatra
parent 9ca50d56a8
commit a083334079
9 changed files with 73 additions and 75 deletions

View File

@@ -6,11 +6,7 @@ import { createStore } from './src/redux/store';
export const wrapRootElement = ({ element }) => {
const store = createStore();
const ConnectedRootElement = (
<Provider store={store}>
{element}
</Provider>
);
const ConnectedRootElement = <Provider store={store}>{element}</Provider>;
return ConnectedRootElement;
};