2026-04-14 17:41:39 +02:00

5 lines
147 B
JavaScript

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