Advertisement
Guest User

Untitled

a guest
Sep 25th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. import React from ’react’;
  2. import { render } from ’react-dom’;
  3. import ContactsApp from ’./app/components/ContactsApp’;
  4.  
  5. let initialData = document.getElementById(’initial-data’).textContent;
  6.  
  7. if(initialData.length>0){  
  8. initialData = JSON.parse(initialData);
  9. }
  10. render(<ContactsApp initialData={initialData} />, document.getElementById(’root’));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement