Renamed directory
This commit is contained in:
parent
d94877aba7
commit
699fd22567
17
chapter11-12/App.regions.js
Normal file
17
chapter11-12/App.regions.js
Normal 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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
@ -1,19 +0,0 @@
|
||||
/* @flow */
|
||||
|
||||
import React from "react";
|
||||
import { StatusBar } from "react-native";
|
||||
|
||||
import { MyDrawer } from "./src/routingApp/drawer";
|
||||
|
||||
class App extends React.Component {
|
||||
render() {
|
||||
return (
|
||||
<React.Fragment>
|
||||
<StatusBar hidden />
|
||||
<MyDrawer />
|
||||
</React.Fragment>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default App;
|
||||
Loading…
x
Reference in New Issue
Block a user