We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Requiring unknown module react-redux/native
Please, update your example. You need change:
import {Provider} from 'react-redux/native';
to:
import {Provider} from 'react-redux';
And change:
<Provider store={store}> {() => <App />} </Provider>
to
<Provider store={store}> <App /> </Provider>
Detail: reduxjs/react-redux#236 (comment)
The text was updated successfully, but these errors were encountered:
Also Change
var React = require('react-native'); var {AppRegistry, StyleSheet,Text,View} = React;
import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Text, View } from 'react-native';
Change
class {componentName} extends React.Component
class App extends Component
and
from var Button = require('react-native-button');
var Button = require('react-native-button');
to import Button from 'react-native-button'
import Button from 'react-native-button'
Sorry, something went wrong.
I have a Sent a Pull-Request to this
No branches or pull requests
Please, update your example. You need change:
to:
And change:
to
Detail:
reduxjs/react-redux#236 (comment)
The text was updated successfully, but these errors were encountered: