Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5491 | Ir a la última revisión | | 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'
5
import NotificationAlert from '../../../../shared/notification/NotificationAlert'
6
import Edit from './Edit'
5473 stevensc 7
 
8
ReactDOM.render(
9
  <Provider store={store}>
5493 stevensc 10
    <Edit profile={backendVars} />
5473 stevensc 11
    <NotificationAlert />
12
  </Provider>,
13
  document.getElementById('react-my-profile-edit')
14
)