fbredius/storybook

View on GitHub
addons/docs/src/frameworks/react/__testfixtures__/9668-js-proptypes-no-jsdoc/input.js

Summary

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

const CCTable = (props) => <>{JSON.stringify(props)}</>;
CCTable.propTypes = {
  heads: PropTypes.array.isRequired,
  onAddClick: PropTypes.func,
};

export const component = CCTable;