-
-
Save boyney123/f81c37a66bf15fca61d2fa7a733c4514 to your computer and use it in GitHub Desktop.
Sentry setup example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from "react"; | |
import logo from "./logo.svg"; | |
import Sentry from "./Sentry"; | |
import ErrorExample from "./ErrorExample"; | |
import "./App.css"; | |
class App extends Component { | |
render() { | |
return ( | |
<Sentry url="http://9ad974bebc5545e3aa3dd259f449ac7f@localhost:9000/2"> | |
<div className="App"> | |
<ErrorExample /> | |
</div> | |
</Sentry> | |
); | |
} | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment