1. Урок 1. 00:05:44
    Introduction to React curriculum
  2. Урок 2. 00:02:22
    DataTable component overview
  3. Урок 3. 00:01:23
    Introduction to Calendar Component
  4. Урок 4. 00:07:33
    Introduction to React
  5. Урок 5. 00:01:56
    Create nested element using API
  6. Урок 6. 00:07:23
    Introduction to JSX
  7. Урок 7. 00:02:23
    JSX built in elements vs custom components
  8. Урок 8. 00:05:28
    Embedding Expressions in JSX
  9. Урок 9. 00:03:32
    Return multiple element from render
  10. Урок 10. 00:05:50
    Introduction to components
  11. Урок 11. 00:02:53
    Functional Component nesting/composition
  12. Урок 12. 00:02:14
    Using inline styles/variables within functional component
  13. Урок 13. 00:02:01
    Introduction to Stateful component
  14. Урок 14. 00:01:24
    A quick note on import statement
  15. Урок 15. 00:02:40
    Creating the App Component
  16. Урок 16. 00:02:08
    Introduction to State
  17. Урок 17. 00:03:25
    Creating Initial State
  18. Урок 18. 00:04:38
    Rendering Project List
  19. Урок 19. 00:01:12
    Component Design Introduction
  20. Урок 20. 00:04:29
    Extracting Project List to Component
  21. Урок 21. 00:00:56
    Refactoring - Extracting Props
  22. Урок 22. 00:01:32
    Add project to State
  23. Урок 23. 00:06:00
    Updating state with hardcoded object
  24. Урок 24. 00:04:00
    Destructuring Explanation
  25. Урок 25. 00:13:59
    How setState works?
  26. Урок 26. 00:02:28
    Creating a form for adding new Project
  27. Урок 27. 00:01:33
    Adding title field to form
  28. Урок 28. 00:01:30
    Adding select field to form
  29. Урок 29. 00:00:37
    Adding submit button to form
  30. Урок 30. 00:02:39
    Adding submit handler
  31. Урок 31. 00:03:43
    Accessing form values by using ref
  32. Урок 32. 00:07:46
    Adding new project to the app state and proptypes
  33. Урок 33. 00:34:20
    Edit Project
  34. Урок 34. 00:04:17
    Delete Project
  35. Урок 35. 00:10:50
    Mark a Project as completed
  36. Урок 36. 00:03:29
    Setting up create-react-app
  37. Урок 37. 00:02:14
    Overview of files created by create-react-app
  38. Урок 38. 00:03:14
    Introduction
  39. Урок 39. 00:04:31
    Setting up the basic code structure
  40. Урок 40. 00:04:48
    Creating the DynamicForm Component Class
  41. Урок 41. 00:04:07
    Implementing the render method of DynamicForm
  42. Урок 42. 00:02:06
    Hooking on the submit event handler
  43. Урок 43. 00:02:13
    Setting up the loop to render form elements dynamically
  44. Урок 44. 00:02:31
    Rendering the labels dynamically
  45. Урок 45. 00:09:56
    Rendering form elements dynamically
  46. Урок 46. 01:02:57
    Adding support for Checkbox, Radio Buttons and Select Elements
  47. Урок 47. 00:12:10
    Dynamic form - bug fixes, updates and conclusion
  48. Урок 48. 00:00:28
    Introduction
  49. Урок 49. 00:02:34
    What we will be building?
  50. Урок 50. 00:11:48
    The basic code to set things up and render the required user interface.
  51. Урок 51. 00:14:05
    Implementing the drag and drop feature
  52. Урок 52. 00:27:52
    Lets get coding the InputTag component
  53. Урок 53. 00:00:20
    Introduction
  54. Урок 54. 00:15:58
    Coding the modal component
  55. Урок 55. 00:03:01
    Setting Prop types
  56. Урок 56. 00:05:44
    Close modal on ESC key press
  57. Урок 57. 00:10:17
    React Portal Feature
  58. Урок 58. 00:30:18
    Coding a calendar component - part -1
  59. Урок 59. 00:30:22
    Coding a calendar component - part -2
  60. Урок 60. 00:29:40
    Understanding the new Context API
  61. Урок 61. 00:06:51
    Some bug fixes
  62. Урок 62. 00:20:24
    Building a reusable state library using the new context API.
  63. Урок 63. 00:02:04
    Introduction to HOC
  64. Урок 64. 00:02:02
    Building the App component
  65. Урок 65. 00:03:59
    Implementing the withBorder HOC Component
  66. Урок 66. 00:02:31
    Refactor the withBorder HOC Component
  67. Урок 67. 00:09:15
    Coding a collapsible HOC component
  68. Урок 68. 00:19:42
    Coding the React Modal Dialog as an HOC
  69. Урок 69. 00:09:35
    Render props
  70. Урок 70. 00:02:28
    Setting up basic code for DataTable
  71. Урок 71. 00:06:19
    Setting up the data for headers
  72. Урок 72. 00:02:13
    Setting up the table rows data
  73. Урок 73. 00:05:47
    Configuring DataTable in App Component
  74. Урок 74. 00:12:35
    Rendering the headers in the DataTable component
  75. Урок 75. 00:18:30
    Rendering the table body with data
  76. Урок 76. 00:13:02
    Sorting columns by clicking on the column headers
  77. Урок 77. 00:08:44
    Reordering columns/headers by drag and drop
  78. Урок 78. 00:26:33
    Searching the table on any columns
  79. Урок 79. 00:09:15
    Searching on multiple columns/nested filtering
  80. Урок 80. 00:05:10
    Troubleshooting tips -1
  81. Урок 81. 00:00:53
    Pagination - Intro
  82. Урок 82. 00:10:55
    Pagination - Setup
  83. Урок 83. 00:00:52
    Pagination - UI Mock
  84. Урок 84. 00:10:00
    Pagination - Page Length Selector
  85. Урок 85. 00:08:10
    Pagination - Previous Page Button
  86. Урок 86. 00:03:58
    Pagination - Next Page Button
  87. Урок 87. 00:08:05
    Pagination - Rendering Long Format
  88. Урок 88. 00:05:52
    Pagination - Rendering Short Format
  89. Урок 89. 00:10:35
    Pagination - Applying to datatable
  90. Урок 90. 00:07:44
    Pagination - Fixing Search
  91. Урок 91. 00:02:06
    Pagination - Fixing Sorting
  92. Урок 92. 00:20:22
    Inline Editing of Records in DataTable
  93. Урок 93. 00:01:36
    Bug fix - getDerivedStateFromProps
  94. Урок 94. 00:05:02
    Customize cell/column renderer - Render Props
  95. Урок 95. 00:07:24
    Search bug fix
  96. Урок 96. 00:06:12
    getDerivedStateFromProps lifecycle method
  97. Урок 97. 01:05:18
    Coding the Circular ProgressBar Component
  98. Урок 98. 02:07:12
    Building a simple CRUD App - Part 1
  99. Урок 99. 01:34:46
    Build your own hooks like library from scratch - 1
  100. Урок 100. 01:38:50
    React Webinar - Part 1 (mint series)
  101. Урок 101. 01:17:10
    React Webinar - part 2 (mint series)
  102. Урок 102. 00:06:58
    SSR Theory
  103. Урок 103. 00:03:12
    SSR - Folder Structure
  104. Урок 104. 00:04:18
    SSR - Configuring package.json
  105. Урок 105. 00:00:40
    SSR - Installing Packages
  106. Урок 106. 00:01:33
    SSR - Configuring webpack.base.js
  107. Урок 107. 00:02:04
    SSR - Configuring webpack.client.js
  108. Урок 108. 00:01:53
    SSR - Configuring webpack.server.js
  109. Урок 109. 00:02:36
    SSR - Home component and client.js entry file
  110. Урок 110. 00:02:15
    SSR - Testing webpack client bundle creation
  111. Урок 111. 00:04:21
    SSR - The Server code (entry point)
  112. Урок 112. 00:05:23
    SSR - Render React Component on Server
  113. Урок 113. 00:10:08
    Simple Star Rating Component