Skip to content

Instantly share code, notes, and snippets.

@VivekNayyar
Last active February 28, 2019 14:13
Show Gist options
  • Save VivekNayyar/6c1d2180a2d6fab123538a70973a59bf to your computer and use it in GitHub Desktop.
Save VivekNayyar/6c1d2180a2d6fab123538a70973a59bf to your computer and use it in GitHub Desktop.

IN

export default class HelloWorld extends React.Component {
  render() {
    const {
      className,
    } = this.props;

    return (
      <div className={className}>
        Hello world!
      </div>
    )
  }
}

Out

const HelloWorld = ({
  className,
}) => {
  return (
    <div className={className}>
      Hello world!
    </div>
  )
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment