Changed name

This commit is contained in:
Federico Kereki
2018-09-15 11:14:10 -03:00
parent 250bbcc974
commit 0038816a1a
56 changed files with 0 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
/* @flow */
import React from "react";
import { Provider } from "react-redux";
import { store } from "./src/adaptiveApp/store";
import { Main } from "./src/adaptiveApp/main";
export default class App extends React.PureComponent<> {
render() {
return (
<Provider store={store}>
<Main />
</Provider>
);
}
}