Skip to content

Instantly share code, notes, and snippets.

@missating
Last active September 17, 2018 09:38
Show Gist options
  • Save missating/5071e371d2a4a3b9ce703cd8851da507 to your computer and use it in GitHub Desktop.
Save missating/5071e371d2a4a3b9ce703cd8851da507 to your computer and use it in GitHub Desktop.
import * as React from 'react';
import PageInterface from '../PageInterface';
class App extends React.Component<PageInterface, {}> {
render() {
return (<div>
<h1>Welcome to React with Typescript</h1>
<p>The color of this page is: {this.props.color}</p>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment