Django - REST Framework Basics
Given this Django view code, what will be the HTTP response content?
from django.http import JsonResponse
def my_view(request):
data = {'name': 'Alice', 'age': 30}
return JsonResponse(data)