Skip to content
Snippets Groups Projects
Hello.tsx 317 B
Newer Older
/**
 * Created by gavorhes on 9/22/2016.
 */
Glenn Vorhes's avatar
Glenn Vorhes committed
import * as React from "react";

export interface HelloProps { compiler: string; framework: string; }

export class Hello extends React.Component<HelloProps, {}> {
    render() {
        return <h1>Hello from {this.props.compiler} and {this.props.framework}!</h1>;
    }
}