Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev Autor Línea Nro. Línea
5743 stevensc 1
import React from 'react';
2
import ReactDOM from 'react-dom';
7777 stevensc 3
import { Provider } from 'react-redux';
4
import { store } from '../redux/store';
5
import NotificationAlert from '../shared/notification/NotificationAlert';
5743 stevensc 6
import ProfileView from './view/ProfileView';
7
 
8
ReactDOM.render(
7777 stevensc 9
    <Provider store={store}>
10
        <ProfileView urlVars={urlVars} />
11
        <NotificationAlert />
12
    </Provider>,
5743 stevensc 13
    document.getElementById("profile")
14
);