UNPKG

project-starter-dan

Version:

A project scaffolding tool.

23 lines (18 loc) 314 B
import React, { Component, PropTypes } from 'react'; class App extends Component { static propTypes = { //propTypes go here }; constructor(props) { super(props); this.state = { //state goes here }; } render() { return ( <div>App</div> ); } } export default App;