12345678910111213141516171819202122 |
- import Settings from 'sentry/plugins/components/settings';
- import type {Plugin} from 'sentry/types/integrations';
- import type {Organization} from 'sentry/types/organization';
- import type {Project} from 'sentry/types/project';
- type Props = {
- organization: Organization;
- project: Project;
- };
- class BasePlugin {
- plugin: Plugin;
- constructor(data: Plugin) {
- this.plugin = data;
- }
- renderSettings(props: Props) {
- return <Settings plugin={this.plugin} {...props} />;
- }
- }
- export default BasePlugin;
|