mantine-form
Installation
SKILL.md
Mantine Form Skill
Core Workflow
1. Set up the form
const form = useForm({
mode: 'controlled', // or 'uncontrolled' for large forms
initialValues: {
email: '',
age: 0,
},
validate: {
email: isEmail('Invalid email'),
age: isInRange({ min: 18 }, 'Must be at least 18'),
},
});
Related skills