From c1c3d2f96d2c4dd22793adf59094a0e9fae1977d Mon Sep 17 00:00:00 2001 From: pradeep Date: Fri, 19 Jun 2026 10:30:11 +0530 Subject: [PATCH] docs(examples): scaffold auth-flow and forms-and-validation apps --- examples/auth-flow/index.ts | 2 ++ examples/forms-and-validation/index.ts | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 examples/auth-flow/index.ts create mode 100644 examples/forms-and-validation/index.ts diff --git a/examples/auth-flow/index.ts b/examples/auth-flow/index.ts new file mode 100644 index 00000000..09f38c3f --- /dev/null +++ b/examples/auth-flow/index.ts @@ -0,0 +1,2 @@ +// Auth Flow Example +console.log('Auth Flow Example'); diff --git a/examples/forms-and-validation/index.ts b/examples/forms-and-validation/index.ts new file mode 100644 index 00000000..5e75c399 --- /dev/null +++ b/examples/forms-and-validation/index.ts @@ -0,0 +1,2 @@ +// Forms and Validation Example +console.log('Forms and Validation Example');