Skip to content

Instantly share code, notes, and snippets.

@u-r-w
Created September 16, 2018 01:45
Show Gist options
  • Save u-r-w/b64ca51bc112cc485a38ae5d39185694 to your computer and use it in GitHub Desktop.
Save u-r-w/b64ca51bc112cc485a38ae5d39185694 to your computer and use it in GitHub Desktop.
import React from 'react';
import { createStore } from "redux";
import { Provider } from "react-redux";
import reducer from './src/Reducer/index';
import TextInputChecker from './src/Component/TextInputChecker';
class App extends React.Component {
render() {
return (
<Provider store={createStore(reducer)}>
<TextInputChecker />
</Provider>
)
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment