5 lines
No EOL
141 B
JavaScript
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;
|
|
} |