Skip to content

Instantly share code, notes, and snippets.

View stevieoj's full-sized avatar
🤔
Brainstorming

Stephen Onoja stevieoj

🤔
Brainstorming
View GitHub Profile
import React from "react";
import { render } from "react-dom";
const ParentComponent = React.createClass({
getDefaultProps: function() {
console.log("ParentComponent - getDefaultProps");
},
getInitialState: function() {
console.log("ParentComponent - getInitialState");
return { text: "" };