From 93a22a683903cdb6d2f6e567c34c18dbcefe1213 Mon Sep 17 00:00:00 2001 From: Eddie Jaoude Date: Mon, 27 Apr 2020 10:24:22 +0100 Subject: [PATCH] React is a library not a framework --- site/src/routes/index.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/routes/index.svelte b/site/src/routes/index.svelte index 73fbffbc6a..1a20e76f9c 100644 --- a/site/src/routes/index.svelte +++ b/site/src/routes/index.svelte @@ -64,7 +64,7 @@
-

Svelte is a radical new approach to building user interfaces. Whereas traditional frameworks like React and Vue do the bulk of their work in the browser, Svelte shifts that work into a compile step that happens when you build your app.

+

Svelte is a radical new approach to building user interfaces. Whereas traditional libraries like React and frameworks like Vue do the bulk of their work in the browser, Svelte shifts that work into a compile step that happens when you build your app.

Instead of using techniques like virtual DOM diffing, Svelte writes code that surgically updates the DOM when the state of your app changes.