1. Урок 1. 00:06:52
    The Missing Introduction to React
  2. Урок 2. 00:01:57
    Rendering view with HTML
  3. Урок 3. 00:02:07
    Bootstrapping React in HTML
  4. Урок 4. 00:03:31
    Render an element with React.createElement
  5. Урок 5. 00:04:35
    Rendering nested elements with React.createElement
  6. Урок 6. 00:03:34
    What is JSX?
  7. Урок 7. 00:04:49
    Creating view with JSX
  8. Урок 8. 00:04:16
    The relation between HTML and JSX
  9. Урок 9. 00:02:38
    Accessibility and ARIA in JSX
  10. Урок 10. 00:03:58
    Interpolating values in JSX
  11. Урок 11. 00:06:24
    Using expressions in JSX
  12. Урок 12. 00:05:53
    Introduction to Components
  13. Урок 13. 00:03:13
    Pure functions
  14. Урок 14. 00:04:11
    Components as functions returning view
  15. Урок 15. 00:05:15
    Passing props to Components
  16. Урок 16. 00:06:43
    The children prop
  17. Урок 17. 00:11:07
    Setting up a dev environment with create-react-app
  18. Урок 18. 00:04:27
    Isolating Components as exports and imports
  19. Урок 19. 00:07:13
    Adding an event handler to an element
  20. Урок 20. 00:07:32
    Adding state with the useState hook
  21. Урок 21. 00:07:43
    One-way Data Flow in Components
  22. Урок 22. 00:09:43
    Building re-usable Components
  23. Урок 23. 00:06:12
    Introduction to the React reconciler
  24. Урок 24. 00:08:32
    Introduction to the React Dev Tools
  25. Урок 25. 00:12:03
    Conditional rendering with an if statement
  26. Урок 26. 00:01:28
    Conditional rendering with the ternary operator
  27. Урок 27. 00:03:59
    Conditional rendering with the boolean AND operator
  28. Урок 28. 00:03:15
    Interpolating Arrays in JSX
  29. Урок 29. 00:04:05
    Exploring Array.map
  30. Урок 30. 00:02:56
    Using Array.map to render an Array
  31. Урок 31. 00:12:12
    Understanding the key prop
  32. Урок 32. 00:08:21
    Filtering collections client side with Array.filter
  33. Урок 33. 00:04:07
    Mapping an Object to view
  34. Урок 34. 00:13:40
    Handling basic side effects
  35. Урок 35. 00:05:30
    Understanding shallow dependency checks
  36. Урок 36. 00:07:31
    Using the empty dependency Array in useEffects
  37. Урок 37. 00:11:05
    Cleaning up after side effects
  38. Урок 38. 00:17:12
    JavaScript closures and the useEffect hook
  39. Урок 39. 00:10:29
    Creating controlled Components
  40. Урок 40. 00:08:54
    Binding multiple form controls to Component State
  41. Урок 41. 00:05:51
    Submitting form data
  42. Урок 42. 00:03:32
    Updating form State from code
  43. Урок 43. 00:03:57
    Using a textarea
  44. Урок 44. 00:04:56
    Using a select
  45. Урок 45. 00:04:35
    Using a checkbox
  46. Урок 46. 00:06:52
    Grouping checkboxes together
  47. Урок 47. 00:08:17
    Using radio buttons
  48. Урок 48. 00:09:49
    Loading data into a form
  49. Урок 49. 00:04:09
    From design to rough Component outline
  50. Урок 50. 00:21:27
    Building a static React view from the design
  51. Урок 51. 00:15:49
    From static view to statefull app
  52. Урок 52. 00:06:55
    Making sure the app is accessible
  53. Урок 53. 00:15:49
    Identifying re-usable code
  54. Урок 54. 00:04:48
    Understanding HTTP requests
  55. Урок 55. 00:05:49
    Create a basic HTTP server in Node Express
  56. Урок 56. 00:15:01
    Fetching data from the server
  57. Урок 57. 00:09:44
    Sending data to the server
  58. Урок 58. 00:04:52
    Avoiding State changes on unmounted Components
  59. Урок 59. 00:03:36
    Using async/await
  60. Урок 60. 00:03:21
    Setting custom HTTP headers
  61. Урок 61. 00:11:29
    Adding React Router to your application
  62. Урок 62. 00:06:37
    Navigating with the router’s Link Component
  63. Урок 63. 00:13:53
    Understanding route parameters
  64. Урок 64. 00:09:50
    Updating the browser title
  65. Урок 65. 00:09:30
    Making routing accessible
  66. Урок 66. 00:07:50
    Introduction to the application
  67. Урок 67. 00:08:07
    Adding a header and footer
  68. Урок 68. 00:20:21
    Displaying the menu
  69. Урок 69. 00:10:30
    Displaying the ice cream images
  70. Урок 70. 00:25:37
    Adding a loading message
  71. Урок 71. 00:19:51
    Routing to an edit component
  72. Урок 72. 00:03:49
    Creating the main navigation
  73. Урок 73. 00:18:46
    Fetching the menu item in the edit component
  74. Урок 74. 00:37:53
    Editing the data in a form
  75. Урок 75. 00:31:29
    Routing accessibility
  76. Урок 76. 00:08:00
    Adding a skip navigation link
  77. Урок 77. 00:14:19
    Building a validation system
  78. Урок 78. 00:10:25
    Displaying validation messages
  79. Урок 79. 00:21:09
    Accessible validation
  80. Урок 80. 00:07:05
    Deleting a menu item
  81. Урок 81. 00:09:53
    Fetching the stock ice cream list
  82. Урок 82. 00:18:38
    Displaying the stock list
  83. Урок 83. 00:23:36
    Extracting the edit form
  84. Урок 84. 00:18:59
    Creating the add page