pesto-students/batch-11-relayer

View on GitHub
client/src/components/common/LabelItem.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react';
import { Label } from 'reactstrap';
import PropTypes from 'prop-types';

const LabelItem = ({ content }) => {
  return <Label>{content}</Label>;
};

LabelItem.propTypes = {
  content: PropTypes.string.isRequired,
};

export default LabelItem;