typescript-react-app-kickstart-guide
typescript-react-app-kickstart-guide copied to clipboard
Kickstart guide for React Redux Apps written in TypeScript
currently default props are defined with ``` export type PickDefaultProps = Readonly; ``` and used like ``` type DefaultProps = PickDefaultProps; ``` why not do: ``` type DefaultProps = Partial;...
With CRA 2.0, you need to add TS Loader to storybook; and use jsx=react as parameter. I can push a full example later :)
Add a CI script to automatically update the gh-pages branch when master is updated.