openreplay/frontend/app/components/Client/Integrations/SentryForm.js
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

31 lines
No EOL
833 B
JavaScript

import React from 'react';
import IntegrationForm from './IntegrationForm';
import DocLink from 'Shared/DocLink/DocLink';
const SentryForm = (props) => (
<>
<div className="p-5 border-b mb-4">
<div>How to integrate Sentry with OpenReplay and see backend errors alongside session recordings.</div>
<DocLink className="mt-4" label="Integrate Sentry" url="https://docs.openreplay.com/integrations/sentry" />
</div>
<IntegrationForm
{ ...props }
name="sentry"
formFields={[ {
key: "organizationSlug",
label: "Organization Slug",
}, {
key: "projectSlug",
label: "Project Slug",
}, {
key: "token",
label: "Token",
}
]}
/>
</>
);
SentryForm.displayName = "SentryForm";
export default SentryForm;