Files
video-shader-toys/ui/src/api/controlApi.js
Aiden c39a1fd53c
Some checks failed
CI / Native Windows Build And Tests (push) Failing after 21s
CI / React UI Build (push) Has been cancelled
CI/CD
2026-05-03 11:26:10 +10:00

8 lines
181 B
JavaScript

export function postJson(path, payload) {
return fetch(path, {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(payload),
});
}