Add a TypeScript sample with .tsx extension

This commit is contained in:
wizawu
2015-09-30 13:45:38 +08:00
parent b54a9c7412
commit 3426165621

View File

@@ -0,0 +1,9 @@
import * as React from 'react';
export class App extends React.Component<any, any> {
render() {
return <button />;
}
}