Styled app

This commit is contained in:
Federico Kereki
2018-09-05 23:21:48 -03:00
parent 8b35af8bc5
commit c4f6b0b629
18 changed files with 570 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
/* @flow */
import React from "react";
import { Provider } from "react-redux";
import { store } from "./src/regionsStyledApp/store";
import { ConnectedMain } from "./src/regionsStyledApp/main.connected";
export default class App extends React.PureComponent<> {
render() {
return (
<Provider store={store}>
<ConnectedMain />
</Provider>
);
}
}