1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-09 00:18:00 +01:00
unleash.unleash/frontend/src/component/admin/index.tsx

13 lines
301 B
TypeScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import { Navigate } from 'react-router-dom';
const render = () => <Navigate to="/admin/users" replace />;
render.propTypes = {
match: PropTypes.object.isRequired,
history: PropTypes.object.isRequired,
};
export default render;