Skip to content
Snippets Groups Projects
reacttst.tsx 329 B
Newer Older
/**
 * Created by gavorhes on 9/22/2016.
 */

import * as React from "react";
import * as ReactDOM from "react-dom";

import { Hello } from "../_scratch/Hello";

console.log('I am in a tsx file for some reason');

ReactDOM.render(
    <Hello compiler="TypeScript" framework="React" />,
    document.getElementById("example")