mirror of
https://github.com/tale/headplane.git
synced 2026-07-28 00:28:56 +00:00
6 lines
137 B
TypeScript
6 lines
137 B
TypeScript
import { data } from 'react-router';
|
|
|
|
export function send<T>(payload: T, init?: number | ResponseInit) {
|
|
return data(payload, init);
|
|
}
|