Skip to content

Instantly share code, notes, and snippets.

@alashstein
Created September 16, 2018 01:45
Show Gist options
  • Save alashstein/b64ca51bc112cc485a38ae5d39185694 to your computer and use it in GitHub Desktop.
Save alashstein/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