openreplay/frontend/app/components/Client/Integrations/GithubForm.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

30 lines
No EOL
762 B
JavaScript

import React from 'react';
import IntegrationForm from './IntegrationForm';
import DocLink from 'Shared/DocLink/DocLink';
const GithubForm = (props) => (
<>
<div className="p-5 border-b mb-4">
<div>Integrate GitHub with OpenReplay and create issues directly from the recording page.</div>
<div className="mt-8">
<DocLink className="mt-4" label="Integrate Github" url="https://docs.openreplay.com/integrations/github" />
</div>
</div>
<IntegrationForm
{ ...props }
ignoreProject
name="issues"
customPath="github"
formFields={[
{
key: "token",
label: "Token",
}
]}
/>
</>
);
GithubForm.displayName = "GithubForm";
export default GithubForm;