Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15761 | Ir a la última revisión | | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
11350 nelberth 1
import React from "react";
2
import ReactDOM from "react-dom";
3
import { Provider } from "react-redux";
4
import { store } from "../redux/store";
5
import Chat from "./chat/Chat";
6
 
7
if (window.innerWidth > 1000) {
8
  ReactDOM.render(
9
    <Provider store={store}>
10
      <Chat contacts={contacts} emojiOnePath={emojione_image_path_png} />
11
    </Provider>,
12
    document.getElementById("react-chat")
13
  );
14
}