index.tsx 249 B

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