-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should this work with a react app? #8
Comments
Yeah, I made some changes, now you can do this in your react or any app with webpack or other bundler: do change your index.js import React from 'react';
import { render } from 'react-dom';
import AppTodo from './AppTodo';
import registerServiceWorker from './registerServiceWorker';
import 'console-remote-client';
console.re.settings({
channel: 'my-todo-logs'
});
// view remote logs at https://console.re/my-todo-logs
render(<AppTodo />, document.getElementById('root'));
registerServiceWorker(); visit |
Anyway you have an example for loading into angular project? I already have it installed, I am having trouble getting it configured for my project. |
I have this
create-react-app
and was wondering if this solution would work on it.The text was updated successfully, but these errors were encountered: