Rev 5176 |
    Ir a la última revisión |
     |
    Ultima modificación |
    Ver Log
    | 
  
  
  
     
        
        | Rev | 
        Autor | 
        Línea Nro. | 
        Línea | 
        
     
     
        
           | 1 | 
           www | 
           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 NotificationAlert from "../../../shared/notification/NotificationAlert";
  | 
        
        
            | 
            | 
           6 | 
           import MyGroups from "./my-groups/MyGroups";
  | 
        
        
            | 
            | 
           7 | 
              | 
        
        
            | 
            | 
           8 | 
           ReactDOM.render(
  | 
        
        
            | 
            | 
           9 | 
             <Provider store={store}>
  | 
        
        
            | 
            | 
           10 | 
               <MyGroups backendVars={backendVars} />
  | 
        
        
            | 
            | 
           11 | 
               <NotificationAlert />
  | 
        
        
            | 
            | 
           12 | 
             </Provider>,
  | 
        
        
            | 
            | 
           13 | 
             document.getElementById("react_my_connections")
  | 
        
        
            | 
            | 
           14 | 
           );
  |