AutorÃa | Ultima modificación | Ver Log |
import React from "react";
import ReactDOM from "react-dom";
import { Provider } from "react-redux";
import ShareModal from "../../../home-section/components/share-modal/ShareModal";
import { store } from "../../../redux/store";
import NotificationAlert from "../../../shared/notification/NotificationAlert";
import Feed from "./feed/Feed";
ReactDOM.render(
<Provider store={store}>
<Feed backendVars={backendVars} />
<ShareModal />
<NotificationAlert />
</Provider>,
document.getElementById("react_my_company_feed")
);