Start your All-Access Pass to unlock this challenge
I'm building a chat application and the main chat template is located at chat/index.stream.html.twig.
chat/index.stream.html.twig
How should I render this template from a Symfony controller?
return $this->render('chat/index.stream.html.twig', [ ], new TurboStreamResponse());
return $this->render('chat/index.stream.html.twig');
return $this->render('chat/index.stream.html.twig', [ ], new Response());
return $this->render('chat/index.stream.html.twig', [ new TurboStreamResponse(), ]);