Create your own module using this template and then use it in any project like this:
import React, { Component } from 'react'
import Template from 'react-module-typescript-template';
import 'react-module-typescript-template/dist/index.css';
class Example extends Component {
render() {
return <Template>Test!!!</Template>
}
}