json
A shortcut for:
new Response(JSON.stringify(someValue), { headers: { "Content-Type": "application/json; utf-8", }, });
Typically used in loaders:
import { json } from "react-router-dom"; const loader = async () => { const data = getSomeData(); return json(data); };
See also:
© React Training 2015-2019
© Remix Software 2020-2022
Licensed under the MIT License (MIT).
https://reactrouterdotcom.fly.dev/docs/en/v6/fetch/json