Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Component Based WebDevelopment

Component Based WebDevelopment

KickOff Noser 2017

Fabian Gosebrink

January 17, 2017
Tweet

More Decks by Fabian Gosebrink

Other Decks in Programming

Transcript

  1. class ShoppingList extends React.Component { render() { return ( <div

    className="shopping-list"> <h1>Shopping List for {this.props.name}</h1> <ul> <li>Instagram</li> <li>WhatsApp</li> <li>Oculus</li> </ul> </div> ); } } // Example usage: <ShoppingList name="Mark" />