Upgrade to Pro — share decks privately, control downloads, hide ads and more …

From Zero to Hero with React and TypeScript

From Zero to Hero with React and TypeScript

Wanna build robust and maintainable app and get an amazing developer experience while building it? Wanna use functional approach, typed JavaScript, and get blazing fast and easy to write unit tests? Is this even real? Indeed It is! With React and TypeScript. A best couple to write web apps for today and the future.

Join me in this live coding session to become a new Hero from zero with React and TypeScript ⚛⚛⚛.

Martin Hochel

October 27, 2018
Tweet

More Decks by Martin Hochel

Other Decks in Programming

Transcript

  1. Martin Hochel Principal SE, GDE WEB Prague / Czech Republic

    @martin_hotell medium.com/@martin_hotell github.com/hotell
  2. What this talk is NOT Deep dive about What is

    React ? What is TypeScript ?
  3. <App/> { data: { bio: GithubUser; repos: GithubUserRepo[] } |

    null, loading: boolean } State: {} Props: Children
  4. <Profile/> { data: { bio: GithubUser repos: GithubUserRepo[] } }

    Props: <UserProfile/> <UserRepos/> <Profile/> { bio: GithubUser; } { repos: GithubUserRepo[]; }
  5. <App/> { data: { bio: GithubUser; repos: GithubUserRepo[] }, loading:

    boolean } State: { httpClient: HttpClient } Props: Children