simple-todos-react.jsx 206 B

123456
  1. if (Meteor.isClient) {
  2. Meteor.startup(function () {
  3. // Use this branch to render the component after the page is ready.
  4. ReactDOM.render(<App />, document.getElementById('render-target'));
  5. });
  6. }