/**
*
* PluginDispatcher
*
*/
import React, { memo } from 'react';
import PropTypes from 'prop-types';
import { Redirect } from 'react-router-dom';
import { get } from 'lodash';
import { BlockerComponent } from 'strapi-helper-plugin';
import PageTitle from '../../components/PageTitle';
import { LOGIN_LOGO } from '../../config';
import ErrorBoundary from '../ErrorBoundary';
export function PluginDispatcher(props) {
const {
global: { plugins },
match: {
params: { pluginId },
},
} = props;
const pluginToRender = get(plugins, pluginId, null);
if (!pluginToRender) {
return