Skip to content

Instantly share code, notes, and snippets.

@moritzuehling
Created January 17, 2016 13:58
Show Gist options
  • Save moritzuehling/052ac43ebc42c86f1143 to your computer and use it in GitHub Desktop.
Save moritzuehling/052ac43ebc42c86f1143 to your computer and use it in GitHub Desktop.
class App extends React.Component<any, any> {
public render() {
return (
<Router>
<Route path="/" component={HomePage}>
</Route>
</Router>
);
}
}
class HomePage extends React.Component<any, any> {
public render() {
return (
<span>
example.
</span>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment