Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
11152 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 ProfileView from './view/ProfileView'
8295 stevensc 7
import '../assets/styles/style-cesa.css'
8
import '../assets/styles/responsive-cesa.css'
5743 stevensc 9
 
10
ReactDOM.render(
11152 stevensc 11
	<Provider store={store}>
15062 stevensc 12
		<ProfileView urlVars={urlVars} labels={LABELS} />
11152 stevensc 13
		<NotificationAlert />
14
	</Provider>,
15
	document.getElementById('profile')
16
)