Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5473 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5473 Rev 5868
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";
3
import { Provider } from 'react-redux'
4
import { store } from "../../../../../redux/store";
4
import { store } from '../../../../redux/store'
5
import NotificationAlert from "../../../../../shared/notification/NotificationAlert";
5
import NotificationAlert from '../../../../shared/notification/NotificationAlert'
6
import EditView from "./pages/EditView";
6
import EditView from './pages/EditView'
Línea 7... Línea 7...
7
 
7
 
8
ReactDOM.render(
-
 
9
    <Provider store={store}>
-
 
10
        <EditView {...backendVars} />
-
 
11
        <NotificationAlert />
-
 
12
    </Provider>,
-
 
13
    document.getElementById("react-my-profile-edit")
-
 
14
);
8
ReactDOM.render(
-
 
9
  <Provider store={store}>
-
 
10
    <EditView {...backendVars} />
-
 
11
    <NotificationAlert />
-
 
12
  </Provider>,
-
 
13
  document.getElementById('react-my-profile-edit')
-
 
14
)