index.tsx 473 B

1234567891011121314151617
  1. import BasePlugin from 'sentry/plugins/basePlugin';
  2. import Settings from './components/settings';
  3. class SessionStackPlugin extends BasePlugin {
  4. displayName = 'SessionStack';
  5. // should never be be called since this is a non-issue plugin
  6. renderGroupActions() {
  7. return null;
  8. }
  9. renderSettings(props: Parameters<typeof BasePlugin.prototype.renderSettings>[0]) {
  10. return <Settings plugin={this.plugin} {...props} />;
  11. }
  12. }
  13. export default SessionStackPlugin;