Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5493 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
5473 stevensc 1
import React from 'react'
2
import ReactDOM from 'react-dom'
3
import { Provider } from 'react-redux'
5491 stevensc 4
import { store } from '../../../../redux/store'
5496 stevensc 5
 
5491 stevensc 6
import NotificationAlert from '../../../../shared/notification/NotificationAlert'
7
import Edit from './Edit'
5473 stevensc 8
 
9
ReactDOM.render(
10
  <Provider store={store}>
5496 stevensc 11
    <Edit profile={backendVars} labels={LABELS} />
5473 stevensc 12
    <NotificationAlert />
13
  </Provider>,
14
  document.getElementById('react-my-profile-edit')
15
)