index.tsx 843 B

1234567891011121314151617181920212223242526272829303132
  1. import ExternalLink from 'sentry/components/links/externalLink';
  2. import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
  3. import type {
  4. Docs,
  5. OnboardingConfig,
  6. } from 'sentry/components/onboarding/gettingStartedDoc/types';
  7. import {tct} from 'sentry/locale';
  8. const onboarding: OnboardingConfig = {
  9. install: () => [
  10. {
  11. type: StepType.INSTALL,
  12. description: tct(
  13. 'Download the SDK and follow the instructions that are provided in the [nintendoDoc:Nintendo Developer documentation].',
  14. {
  15. nintendoDoc: (
  16. // TODO: @athena replace with the actual link
  17. <ExternalLink href="https://developer.nintendo.com/" />
  18. ),
  19. }
  20. ),
  21. },
  22. ],
  23. configure: () => [],
  24. verify: () => [],
  25. };
  26. const docs: Docs = {
  27. onboarding,
  28. };
  29. export default docs;