Skip to content

Instantly share code, notes, and snippets.

@RichardBray
Created January 10, 2018 13:04
Show Gist options
  • Save RichardBray/82dbfa0dede01a941235211fb6eaec84 to your computer and use it in GitHub Desktop.
Save RichardBray/82dbfa0dede01a941235211fb6eaec84 to your computer and use it in GitHub Desktop.
first bit of content for app.tsx
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