Main/resources/[jobs]/[police]/xRadar/html/app/utils/importTemplate.js
2025-06-07 08:51:21 +02:00

5 lines
No EOL
141 B
JavaScript

export default async function importTemplate(name) {
const res = await fetch(name);
const html = await res.text();
return html;
}