Pluggable troubleshoot module
import {
Troubleshoot
} from '@rh-support/troubleshoot';
<!-- import '@rh-support/troubleshoot/lib/troubleshoot.css'; -->
import React from 'react';
import { RouteComponentProps } from 'react-router-dom';
export function TroubleshootApp(routeProps: RouteComponentProps<{}>) {
return (<Troubleshoot routeProps={routeProps} basePath="/troubleshoot"/>);
}