Skip to content

Instantly share code, notes, and snippets.

@JiDai
Created November 21, 2017 22:56
Show Gist options
  • Save JiDai/34c0f24e1a5431e1b7f22d9ebc4e4e5e to your computer and use it in GitHub Desktop.
Save JiDai/34c0f24e1a5431e1b7f22d9ebc4e4e5e to your computer and use it in GitHub Desktop.
React Functionnal Component (JetBrains)
import React from 'react';
import PropTypes from 'prop-types';
const ${NAME} = ({}) => {
return (
);
}
${NAME}.displayName = '${NAME}';
${NAME}.propTypes = {
};
/**
* ${NAME} Functional Component.
*/
export default ${NAME};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment