react-native-template-agile-rn
Version:
<h3 align="center"> <b>Agile RN</b> is a <b>React Native ⚛ template</b> that was created to <i>speed up project start-up</i> as well as make <i>app development easier</i>. <h3>
23 lines (17 loc) • 473 B
JavaScript
import React from 'react';
import { StatusBar, YellowBox } from 'react-native';
import { Provider } from 'react-redux';
import '~/config/ReactotronConfig';
import store from '~/store';
import Routes from '~/routes';
if (__DEV__) {
YellowBox.ignoreWarnings(['Remote debugger', 'forwardRef']);
}
// root
const App = () => (
<Provider store={store}>
<StatusBar barStyle="dark-content" backgroundColor="#fff" />
<Routes />
</Provider>
);
export default App;