Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 3420 Rev 3426
Línea 4... Línea 4...
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 PublicPost from './PublicPost'
6
import PublicPost from './PublicPost'
Línea 7... Línea 7...
7
 
7
 
8
ReactDOM.render(
-
 
9
    <Provider store={store}>
-
 
10
      <PublicPost {...backendVars} />
-
 
11
      <NotificationAlert />
-
 
12
    </Provider>,
-
 
13
    document.getElementById("public-post")
-
 
14
  );
8
ReactDOM.render(
-
 
9
  <Provider store={store}>
-
 
10
    <PublicPost
-
 
11
      image={backendVars?.image}
-
 
12
      title={backendVars?.title}
-
 
13
      description={backendVars?.description}
-
 
14
      url={backendVars?.url}
-
 
15
    />
-
 
16
    <NotificationAlert />
-
 
17
  </Provider>,
-
 
18
  document.getElementById("public-post")
-
 
19
);
15
20