From 59e8c71786fd1c154904b3fefa7d26d88f4d92d2 Mon Sep 17 00:00:00 2001 From: Marcus Otterström Date: Fri, 8 Jul 2022 22:08:32 +0200 Subject: Format astro files in examples (#3862) --- examples/non-html-pages/src/pages/index.astro | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'examples/non-html-pages/src') diff --git a/examples/non-html-pages/src/pages/index.astro b/examples/non-html-pages/src/pages/index.astro index 9abb797e4..b6fc1decf 100644 --- a/examples/non-html-pages/src/pages/index.astro +++ b/examples/non-html-pages/src/pages/index.astro @@ -1,4 +1,3 @@ - @@ -12,7 +11,9 @@ // can fetch them directly in the browser. const response = await fetch(`/about.json`); const data = await response.json(); - document.getElementById('result').innerHTML = `Load complete!
Built with: ${data.name}!`; + document.getElementById( + "result" + ).innerHTML = `Load complete!
Built with: ${data.name}!`; -- cgit v1.2.3