Skip to content

Instantly share code, notes, and snippets.

@FrankGerold
Last active January 24, 2020 14:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FrankGerold/1f3c2ce5567cf9a5ba20ac747bd9ae3d to your computer and use it in GitHub Desktop.
Save FrankGerold/1f3c2ce5567cf9a5ba20ac747bd9ae3d to your computer and use it in GitHub Desktop.
Traditioinal React Class Component
import React, { Component } from 'react';
class Demo extends Component {
render() {
return (
<div>Class Component</div>
);
}
}
export default Demo;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment