Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 4500 Rev 5894
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 ShareModal from "../../../../dashboard/components/share-modal/ShareModal";
5
import ShareModal from '../../../../dashboard/components/share-modal/ShareModal'
6
import NotificationAlert from "../../../../shared/notification/NotificationAlert";
6
import NotificationAlert from '../../../../shared/notification/NotificationAlert'
7
import View from "./pages/View";
7
import View from './pages/View'
8
import './styles/index.scss'
8
import './styles/index.scss'
Línea 9... Línea 9...
9
 
9
 
10
ReactDOM.render(
-
 
11
    <Provider store={store}>
-
 
12
        <View groupId={groupId} backendVars={backendVars} />
-
 
13
        <ShareModal />
-
 
14
        <NotificationAlert />
-
 
15
    </Provider>,
-
 
16
    document.getElementById("react_group_view")
-
 
17
);
10
ReactDOM.render(
-
 
11
  <Provider store={store}>
-
 
12
    <View backendVars={backendVars} />
-
 
13
    <ShareModal />
-
 
14
    <NotificationAlert />
-
 
15
  </Provider>,
-
 
16
  document.getElementById('react_group_view')
-
 
17
)