Created
January 10, 2018 13:04
-
-
Save RichardBray/82dbfa0dede01a941235211fb6eaec84 to your computer and use it in GitHub Desktop.
first bit of content for app.tsx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as React from "react"; | |
export class App extends React.Component<any, any> { | |
render() { | |
return <h1>Hello, {this.props.name}</h1>; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment