fbredius/storybook

View on GitHub
addons/docs/src/frameworks/react/__testfixtures__/8428-js-static-prop-types/input.js

Summary

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

// eslint-disable-next-line react/prefer-stateless-function
export default class Test extends React.Component {
  static propTypes = {
    /**
     * Please work...
     */
    test: PropTypes.string,
  };

  render() {
    return <div>test</div>;
  }
}

export const component = Test;