24 lines
No EOL
663 B
JavaScript
24 lines
No EOL
663 B
JavaScript
import IntegrationForm from './IntegrationForm';
|
|
import DocLink from 'Shared/DocLink/DocLink';
|
|
|
|
const RollbarForm = (props) => (
|
|
<>
|
|
<div className="p-5 border-b mb-4">
|
|
<div>How to integrate Rollbar with OpenReplay and see backend errors alongside session replays.</div>
|
|
<DocLink className="mt-4" label="Integrate Rollbar" url="https://docs.openreplay.com/integrations/rollbar" />
|
|
</div>
|
|
<IntegrationForm
|
|
{ ...props }
|
|
name="rollbar"
|
|
formFields={[ {
|
|
key: "accessToken",
|
|
label: "Access Token",
|
|
}
|
|
]}
|
|
/>
|
|
</>
|
|
);
|
|
|
|
RollbarForm.displayName = "RollbarForm";
|
|
|
|
export default RollbarForm; |