How can I pass data from django to react at render time
May 01, 2023
The question is fairly simple. I need to pass data from django to a react component. In django, I have a json object being dumped:
class PulseHome(TemplateView):
template_name = "pulse_murasa/pulse_home.html"
def get_context_data(self, **kwargs):
context …
0 Comments