Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 1 Rev 5795
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 { store } from '../../redux/store'
3
import { Provider } from "react-redux";
4
import { Provider } from 'react-redux'
-
 
5
 
4
import ShareModal from "../../dashboard/components/share-modal/ShareModal";
6
import ShareModal from '../../dashboard/components/share-modal/ShareModal'
5
import { store } from "../../redux/store";
-
 
6
import NotificationAlert from "../../shared/notification/NotificationAlert";
7
import NotificationAlert from '../../shared/notification/NotificationAlert'
7
import View from "./view/View";
8
import View from './view/View'
Línea 8... Línea 9...
8
 
9
 
9
ReactDOM.render(
10
ReactDOM.render(
10
  <Provider store={store}>
-
 
11
    <View
-
 
12
      routeTimeline={[]}//"$routeTimeline"
-
 
13
      groupId={groupId}
11
  <Provider store={store}>
14
      backendVars={backendVars}
-
 
15
    />
12
    <View {...backendVars} labels={LABELS} />
16
    <ShareModal />
13
    <ShareModal />
17
    <NotificationAlert />
14
    <NotificationAlert />
18
  </Provider>,
15
  </Provider>,
19
  document.getElementById("react_group_view")
16
  document.getElementById('react_group_view')