Skip to content

Commit

Permalink
[FE/#15] Feat : CookiesProvider 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
sungik-choi committed Jun 24, 2020
1 parent 4a03049 commit 9742a59
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion FE/src/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import ReactDOM from "react-dom";
import React from "react";
import { CookiesProvider } from "react-cookie";

import App from "./App";

const rootElement = document.getElementById("root");

ReactDOM.render(<App />, rootElement);
ReactDOM.render(
<CookiesProvider>
<App />
</CookiesProvider>,
rootElement,
);

0 comments on commit 9742a59

Please sign in to comment.