스파르타 코딩클럽 - 리액트 3주차(9)

SeungMai(junior)·2021년 7월 28일
0

1. 리덕스와 컴포넌트를 연결하자.

1.1. Store 연결하기

index.js에서 필요한 작업을 해주는데 스토어를 불러오고, 우리 버킷리스트에 주입하면 끝이난다.

  • index.js
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
import { BrowserRouter } from "react-router-dom";

import { Provider } from "react-redux";
import store from "./redux/cofigStore";

ReactDOM.render(
  <Provider store={store}>
     <BrowserRouter>
      <App />
    </BrowserRouter>
  </Provider>,
  document.getElementById('root')
);

// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
reportWebVitals();
profile
👍🏻 SeungMai (매 순간 기록을!)🧑🏻‍💻 | WIL만 올리고 있습니다 | 기술블로그는 아래 🏠 의 링크를 이용해주세요.

0개의 댓글

관련 채용 정보