Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Using TypeScript with React, а также все другие курсы, прямо сейчас!
Премиум
  1. Урок 1. 00:05:48
    What is TypeScript and why we need it?
  2. Урок 2. 00:06:27
    Installing TypeScript globally and locally
  3. Урок 3. 00:03:32
    TypeScript Section Introduction
  4. Урок 4. 00:17:15
    Setting Up a Simple TypeScript Project
  5. Урок 5. 00:04:34
    Modules
  6. Урок 6. 00:12:44
    Types
  7. Урок 7. 00:06:08
    Interfaces
  8. Урок 8. 00:05:27
    Functions
  9. Урок 9. 00:11:06
    Classes
  10. Урок 10. 00:07:24
    ECMAScript Private Fields
  11. Урок 11. 00:06:00
    Implementing Interfaces
  12. Урок 12. 00:11:04
    Describing Classes Using Interfaces
  13. Урок 13. 00:13:37
    Generics
  14. Урок 14. 00:07:28
    Union Type
  15. Урок 15. 00:07:02
    Intersection Type
  16. Урок 16. 00:02:40
    Type Alias
  17. Урок 17. 00:05:34
    Using External Packages and Their Types
  18. Урок 18. 00:12:32
    Declaration Merging
  19. Урок 19. 00:35:33
    Utility Types
  20. Урок 20. 00:12:16
    Mapped Types
  21. Урок 21. 00:23:09
    Conditional Types
  22. Урок 22. 00:00:29
    TypeScript with React Section Introduction
  23. Урок 23. 00:02:24
    What is webpack?
  24. Урок 24. 00:09:05
    Setting up a webpack project
  25. Урок 25. 00:02:38
    TypeScript setup options
  26. Урок 26. 00:05:55
    Setting up TypeScript using ts-loader
  27. Урок 27. 00:11:20
    Setting up TypeScript using babel-loader
  28. Урок 28. 00:05:22
    Adding React
  29. Урок 29. 00:07:26
    Adding a source map
  30. Урок 30. 00:08:47
    Function components
  31. Урок 31. 00:10:18
    Setting up CSS Modules
  32. Урок 32. 00:05:41
    Importing SVGs - adding a logo
  33. Урок 33. 00:06:35
    Class components
  34. Урок 34. 00:10:01
    Handling events using React
  35. Урок 35. 00:18:44
    Using React context and the useState hook
  36. Урок 36. 00:15:47
    Replacing setState with useReducer
  37. Урок 37. 00:08:20
    Store cart data in local storage (useEffect hook)
  38. Урок 38. 00:06:25
    Creating a Higher Order Component - part 1
  39. Урок 39. 00:14:48
    Creating a Higher Order Component - part 2
  40. Урок 40. 00:06:03
    Creating a Render Props component
  41. Урок 41. 00:02:15
    Creating a custom hook
  42. Урок 42. 00:10:29
    Handling original DOM events
  43. Урок 43. 00:01:33
    Building a React Redux App Section Introduction
  44. Урок 44. 00:10:35
    Initial Setup
  45. Урок 45. 00:10:15
    Setting Up a Fake Server
  46. Урок 46. 00:15:51
    Setting Up Redux
  47. Урок 47. 00:27:12
    Creating the Recorder Component
  48. Урок 48. 00:04:09
    Creating the Event List Component
  49. Урок 49. 00:15:39
    Loading Events - Part 1
  50. Урок 50. 00:22:06
    Loading Events - Part 2 (using connect)
  51. Урок 51. 00:14:16
    Creating Events
  52. Урок 52. 00:11:18
    Deleting Events
  53. Урок 53. 00:19:54
    Editing Titles
  54. Урок 54. 00:00:56
    Building the Tasks App Section Introduction
  55. Урок 55. 00:07:51
    Setting up a Next.js project with TypeScript
  56. Урок 56. 00:09:48
    Explaining the tsconfig options
  57. Урок 57. 00:08:20
    Explaining the esModuleInterop option
  58. Урок 58. 00:11:43
    Setting up the GraphQL API route
  59. Урок 59. 00:20:35
    Setting up a local MySQL server
  60. Урок 60. 00:13:07
    Creating resolvers for the "tasks" query and "createTask" mutation
  61. Урок 61. 00:10:58
    Adding GraphQL code generator for the back end
  62. Урок 62. 00:14:40
    Finishing the GraphQL API
  63. Урок 63. 00:32:10
    Setting up Apollo Client
  64. Урок 64. 00:06:32
    Generating types for the front end
  65. Урок 65. 00:07:28
    Adding styles
  66. Урок 66. 00:03:01
    Adding the form for creating tasks
  67. Урок 67. 00:10:49
    Running the "createTask" mutation
  68. Урок 68. 00:16:33
    Adding the form for updating tasks
  69. Урок 69. 00:11:11
    Running the "updateTask" mutation
  70. Урок 70. 00:21:58
    Deleting tasks
  71. Урок 71. 00:31:38
    Filtering tasks by task status
  72. Урок 72. 00:05:15
    Marking the tasks as completed
  73. Урок 73. 00:05:05
    Using a single page to render the tasks list