From fa1f447bd0eaf9d27b6af407f90477b81e70b358 Mon Sep 17 00:00:00 2001 From: Hayleigh Thompson Date: Fri, 5 Apr 2024 13:22:40 +0100 Subject: =?UTF-8?q?=F0=9F=94=80=20Write=20a=20guide=20on=20server-side=20r?= =?UTF-8?q?endering.=20(#103)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * :memo: Fix typos in state management guide. * :memo: Begin writing ssr guide. * :memo: Rename discard init arg to '_flags' in all examples. * :memo: Show simple static HTML rendering example. * :memo: Expand hydration section. * :memo: Finish ssr guide. * :wrench: Add ssr guide to built docs pages. --- test-apps/change-tag/src/app.gleam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test-apps') diff --git a/test-apps/change-tag/src/app.gleam b/test-apps/change-tag/src/app.gleam index 78c29d2..ee4950d 100644 --- a/test-apps/change-tag/src/app.gleam +++ b/test-apps/change-tag/src/app.gleam @@ -26,7 +26,7 @@ pub fn main() { type Model = String -fn init(_) -> Model { +fn init(_flags) -> Model { "div" } -- cgit v1.2.3