UNPKG

@diemtarh/hello-world

Version:

Template to build and publish a TypeScript React Components To NPM

10 lines (9 loc) 237 B
import * as React from 'react'; interface HelloWorldProps { color: string; } export declare class HelloWorld extends React.Component<HelloWorldProps> { constructor(props: HelloWorldProps); render(): JSX.Element; } export {};