Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5176 | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

import React from 'react'
import ReactDOM from 'react-dom'
import { store } from '../../../redux/store'
import { Provider } from 'react-redux'
import NotificationAlert from '../../../shared/notification/NotificationAlert'
import MyGroups from './my-groups/MyGroups'

ReactDOM.render(
  <Provider store={store}>
    <MyGroups {...backendVars} labels={LABELS} />
    <NotificationAlert />
  </Provider>,
  document.getElementById('react_my_connections')
)