An introduction to React Server Components

Поділитися
Вставка
  • Опубліковано 5 лют 2025

КОМЕНТАРІ • 6

  • @noelalfaro
    @noelalfaro Рік тому +1

    Great video! You broke down the topics well, I find myself understanding RSC and this new model well on one day and lost the next but I think you broke it down efficiently! Will definitely be rewatching 😁

    • @AblyRealtime
      @AblyRealtime  Рік тому

      Thank you for your kind words! We're glad to hear you found our explanation helpful

  • @KhaPiano
    @KhaPiano Рік тому +1

    Awesome video - clear and concise. 👏

  • @janisbasisbasovsdev7147
    @janisbasisbasovsdev7147 Рік тому

    Good video. I have one question - in you research, did you found a smooth way to pass data from client component to server component? Lets say, user click on an item in the table and a table footer pops up with more data about the row that was clicked in the table. I want the "more data" to be fetched and displayed in server component. But for the server component to know what data to fetch it need the row id which is stored in state management system Zustand (runs only on client).... So how can i pass the newly selected ID to server compoennt?

    • @AblyRealtime
      @AblyRealtime  Рік тому

      Alex from the video here 👋🏻 Unfortunately, no. From what I learned, you can’t really pass data from client to server components, you have to fetch all of it upfront and only use the client component to control what gets displayed.