Rev 1 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
import React from "react";
import ReactDOM from "react-dom";
import { Provider } from "react-redux";
import { store } from "../../redux/store";
import NotificationAlert from "../../shared/notification/NotificationAlert";
import Post from './post'
ReactDOM.render(
<Provider store={store}>
<Post {...backendVars} />
<NotificationAlert />
</Provider>,
document.getElementById("react-post-view")
);