index.tsx 244 B

123456789
  1. import {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. }