Skip to content

Instantly share code, notes, and snippets.

@bhavaniravi
Created April 20, 2019 06:44
Show Gist options
  • Save bhavaniravi/d38de00d581f9f69cbbd83d4cfd8f1bd to your computer and use it in GitHub Desktop.
Save bhavaniravi/d38de00d581f9f69cbbd83d4cfd8f1bd to your computer and use it in GitHub Desktop.
Blog gist Integrate with frontend
import React, {Component} from 'react';
import TodoList from '../ui/TodoList';
import StateProvider from './StateProvider';
class App extends Component {
render() {
return (
<StateProvider>
<TodoList/>
</StateProvider>
);
}
}
export default App
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment