You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
419 B
15 lines
419 B
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
import { Redirect, Route } from 'react-router-dom'
|
|
|
|
export default function FeatureToggledRoute({ flag, redirectRoute, ...props }) {
|
|
if (flag) {
|
|
return <Route {...props} />
|
|
}
|
|
return <Redirect to={{ pathname: redirectRoute }} />
|
|
}
|
|
|
|
FeatureToggledRoute.propTypes = {
|
|
flag: PropTypes.bool.isRequired,
|
|
redirectRoute: PropTypes.string.isRequired,
|
|
}
|
|
|