Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev Autor Línea Nro. Línea
5414 stevensc 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 View from './view/View'
7
import '../../css/shared/global.scss'
1 www 8
 
9
ReactDOM.render(
10
  <Provider store={store}>
5414 stevensc 11
    <View
12
      backendVars={backendVars}
13
      labels={LABELS}
14
    />
1 www 15
    <NotificationAlert />
16
  </Provider>,
5414 stevensc 17
  document.getElementById('react_my_company')
18
)