billing.tsx 389 B

1234567891011
  1. import HookOrDefault from 'sentry/components/hookOrDefault';
  2. export const MetricsSubscriptionAlert = HookOrDefault({
  3. hookName: 'component:metrics-subscription-alert',
  4. defaultComponent: () => null,
  5. });
  6. export const MetricsOnboardingPanelPrimaryAction = HookOrDefault({
  7. hookName: 'component:metrics-onboarding-panel-primary-action',
  8. defaultComponent: ({children}) => children,
  9. });