From de52a3051ecc0d01aa567671cbddc6dba79134b8 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Fri, 14 Jun 2024 10:41:03 +0100 Subject: [PATCH] State-based UI is an anti-pattern --- website/src/data/links.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/website/src/data/links.ts b/website/src/data/links.ts index dc6635f..38ff760 100644 --- a/website/src/data/links.ts +++ b/website/src/data/links.ts @@ -68,6 +68,12 @@ const LINKS: Link[] = [ description: 'Yuck, yuck, yuck. Makes me glad I’m not on Instagram. For people already stuck there, though, this just sucks. Highly recommend either opting out of AI training or quitting Insta, if only to give the twits the middle finger they deserve.', isoDateAdded: '2024-06-14', }, + { + href: 'https://gomakethings.com/state-based-ui-is-an-anti-pattern', + title: 'State-based UI is an anti-pattern', + description: 'Chris Ferdinandi has a hot take here. I would be keen to test this idea out one day: push the limits of how much complex state you can manage within the light DOM.', + isoDateAdded: '2024-06-14', + }, ]; export default LINKS;