Skip to content

Instantly share code, notes, and snippets.

@kwoncharles
Last active February 24, 2019 06:43
Show Gist options
  • Save kwoncharles/23425a6168bcf89a59249e66f3da4b6e to your computer and use it in GitHub Desktop.
Save kwoncharles/23425a6168bcf89a59249e66f3da4b6e to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import { CookiesProvider } from 'react-cookie';
import Main from './main/Main';
import './App.css';
class App extends Component {
render() {
return (
<CookiesProvider>
<div className="App">
<Main />
</div>
</CookiesProvider>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment