import React from 'react';
import { connect } from 'react-redux';
import classNames from 'classnames';
import Tooltip from './tooltip';
const Plugin = ({
id, label, description, status
}) => {
const error = status !== 'ok';
const className = classNames({ error });
const tip = (
Description:
{description}
Status:
{' '}
{status}
);
// Inner span to hold styling so we don't effect the "before:content"
return (