Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 1 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5176 stevensc 1
import React from 'react'
2
import ReactDOM from 'react-dom'
3
import { store } from '../../../redux/store'
4
import { Provider } from 'react-redux'
5
import NotificationAlert from '../../../shared/notification/NotificationAlert'
6
import MyGroups from './my-groups/MyGroups'
1 www 7
 
8
ReactDOM.render(
9
  <Provider store={store}>
5176 stevensc 10
    <MyGroups {...backendVars} />
1 www 11
    <NotificationAlert />
12
  </Provider>,
5176 stevensc 13
  document.getElementById('react_my_connections')
14
)