Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 5754 | Rev 8114 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

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