I\'m super new to React and I\'m trying to get it set up for Meteor and piecing stuff together from other sources too. One of these other sources set up console logging for the
const Console = prop => (
console[Object.keys(prop)[0]](...Object.values(prop))
,null // ➜ React components must return something
)
// Some component with JSX and a logger inside
const App = () =>
imagine this is some component
imagine another component
// Render
ReactDOM.render(
,
document.getElementById("react")
)