From 365de7ceab2aa2dfd7aef2b8be40e183daa19ec7 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Fri, 25 Sep 2020 03:39:58 -0700 Subject: [PATCH] Implement cookies --- src/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/index.tsx b/src/index.tsx index 9e117da6..9959e8ed 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -1,11 +1,14 @@ import React from 'react' import ReactDOM from 'react-dom' +import { CookiesProvider } from 'react-cookie' import { BrowserRouter } from 'react-router-dom' import App from './components/App/App' ReactDOM.render(( - + + + ), document.getElementById('root')) \ No newline at end of file