UNPKG

typescript-react-webpack-app-creator

Version:

Npm module to create an empty react app with typescript as compiller, webpack as bundler and tslint included.

9 lines (7 loc) 250 B
import * as React from 'react'; import * as ReactDOM from 'react-dom'; import { Hello } from './components/Hello'; ReactDOM.render( <Hello compiler='TypeScript' framework='React' author='Create-App' />, document.getElementById('example') );