mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-11-26 16:52:06 +05:30
20 lines
533 B
TypeScript
20 lines
533 B
TypeScript
import React from 'react';
|
|
import { Route, RouteProps } from 'react-router-dom';
|
|
|
|
import AuthFlowRouteContents from './AuthFlowRouteContents';
|
|
|
|
export default function AuthFlowRoute(props: RouteProps) {
|
|
const { component: Component, ...routeProps } = props;
|
|
|
|
if (!Component) {
|
|
throw new Error('props.component required');
|
|
}
|
|
|
|
return (
|
|
<Route
|
|
{...routeProps}
|
|
render={(routerProps) => <AuthFlowRouteContents routerProps={routerProps} component={Component} />}
|
|
/>
|
|
);
|
|
}
|