import React from 'react';
import PropTypes from 'prop-types';

const Code = ({ children }) => {
  return <code>{children}</code>;
};

Code.propTypes = {
  children: PropTypes.any
};

export default Code;
