import React from 'react' import PropTypes from 'prop-types' import { Card, CardContent, Typography } from '@material-ui/core' import ToggleEnabledSwitch from './ToggleEnabledSwitch' export const StatusCard = ({ classes, translate, manifest }) => { return ( {translate('resources.plugin.sections.status')} ) } StatusCard.propTypes = { classes: PropTypes.object.isRequired, translate: PropTypes.func.isRequired, manifest: PropTypes.object, }