Skip to content
This repository was archived by the owner on Jan 30, 2026. It is now read-only.

Commit 473d4b1

Browse files
committed
chore: update .gitignore and add email checkbox in App component
1 parent bd08923 commit 473d4b1

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ examples/**/pnpm-lock.yaml
2424
examples/**/yarn.lock
2525

2626
# Dev
27-
dev/**
27+
dev/**
28+
CLAUDE.md

demo/src/App.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,12 @@ export function App() {
144144
type: 'checkbox',
145145
label: 'I accept the terms and conditions',
146146
validation: { required: true }
147+
},
148+
{
149+
id: 'email',
150+
type: 'checkbox',
151+
label: 'Send me a copy of the agreement',
152+
validation: { required: false }
147153
}
148154
]
149155
}}

0 commit comments

Comments
 (0)