React Native adaptive view

This commit is contained in:
Federico Kereki
2018-09-02 13:40:27 -03:00
parent 43945d111c
commit 0424e78c8c
16 changed files with 708 additions and 22 deletions
+17
View File
@@ -0,0 +1,17 @@
/* @flow */
import React from "react";
import { Provider } from "react-redux";
import { store } from "./src/regionsApp/store";
import { Main } from "./src/regionsApp/main";
export default class App extends React.PureComponent<> {
render() {
return (
<Provider store={store}>
<Main />
</Provider>
);
}
}