blob: bcde943ba60fb67cb14fdfbc6d1d63fc551bc388 [file] [log] [blame]
import React from 'react';
import ProtectedRoute from './ProtectedRoute';
const withProtect = (Component: React.ComponentType) => {
return React.createElement(ProtectedRoute, {
children: React.createElement(Component)
});
};
export default withProtect;