From 74c7f9c07a5c2f09f0ccde270a38e39bda3cecd8 Mon Sep 17 00:00:00 2001 From: Baris Aydek Date: Mon, 26 Feb 2024 20:01:27 +0100 Subject: [PATCH] Added demo pages --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 395e000..4548f56 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,11 @@ An example of how to create [Immediate mode](https://en.wikipedia.org/wiki/Immediate_mode_(computer_graphics)) GUI web applications using DOM manipulation. +# Demos + +* Counter app: https://dhalsim.github.io/imgui-dom/examples/counter/ +* Todo app: https://dhalsim.github.io/imgui-dom/examples/todo/ + # How to run ## Counter example @@ -9,6 +14,11 @@ An example of how to create [Immediate mode](https://en.wikipedia.org/wiki/Immed Install dependencies: `npm install` Run: `npm start:counter` +## ToDo example + +Install dependencies: `npm install` +Run: `npm start:todo` + # TODOs - [ ] Add Tailwind CSS to the project rather then using a CDN for treeshaking.