import React, { Component } from 'react'; import './App.css'; import { Exceptionless, ExceptionlessErrorBoundary } from "@exceptionless/react"; class App extends Component { async componentDidMount() { await Exceptionless.startup(c => { c.apiKey = "LhhP1C9gijpSKCslHHCvwdSIz298twx271n1l6xw"; c.serverUrl = "http://localhost:5000"; c.useDebugLogger(); c.defaultTags.push("Example", "React"); }) } render() { return (

Exceptionless React Sample

To get started, edit src/App.js and save to reload.

); } } export default App;