Skip to content

Instantly share code, notes, and snippets.

@victorshkoda
Created February 20, 2020 05:58
Show Gist options
  • Save victorshkoda/d2141b8089e742ff8b5ffb31e360f476 to your computer and use it in GitHub Desktop.
Save victorshkoda/d2141b8089e742ff8b5ffb31e360f476 to your computer and use it in GitHub Desktop.
New react class
import React, {Component} from 'react';
export default class Index extends Component {
constructor(props) {
super(props);
}
state = {
};
render() {
return (
<>
</>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment