index.tsx 267 B

123456789
  1. import type {RouteComponentProps} from 'sentry/types/legacyReactRouter';
  2. import Onboarding from './onboarding';
  3. type Props = RouteComponentProps<{step: string}, {}>;
  4. export default function OnboardingContainer(props: Props) {
  5. return <Onboarding {...props} />;
  6. }