
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
react-form-decorator
Advanced tools
A lightweight react library for creating controlled form component.
npm install --save react-form-decorator
import React from "react";
import { Form, FormField } from "react-form-decorator";
import { FormInstance } from "react-form-decorator/dist/types";
import "react-form-decorator/dist/index.css";
const GiftCard = () => {
const formRef = useRef<FormInstance>();
const handleSubmit = (event: FormEvent) => {
event.preventDefault();
formRef.current!.validateForm().then((values) => {
console.log("handleSubmit", values);
});
};
return (
<Form ref={formRef} onSubmit={handleSubmit}>
<FormField
name="amount"
required={true}
addons={[
<div className="control">
<button className="button">$</button>
</div>,
null,
]}
>
{(props) => <input type="number" min="1" {...props} />}
</FormField>
<FormField name="quantity" initial="1">
{(props) => (
<select {...props}>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
)}
</FormField>
<button className="button" type="submit">
Add Gift Card
</button>
</Form>
);
};
const SetPassword = () => {
const formRef = useRef<FormInstance>();
const handleSubmit = (event: FormEvent) => {
event.preventDefault();
formRef.current!.validateForm().then((values) => {
console.log("handleSubmit", values);
});
};
return (
<Form ref={formRef} onSubmit={handleSubmit}>
<FormField name="password" required>
{(props) => (
<input type="password" placeholder="New Password" {...props} />
)}
</FormField>
<FormField
name="confirm"
required
validate={(value) => {
const { input } = formRef.current!.formState;
if (value !== input.password) {
return ["error", "Passwords do not match"];
}
return [];
}}
>
{(props) => (
<input type="password" placeholder="Confirm Password" {...props} />
)}
</FormField>
<button className="button" type="submit">
Set Password
</button>
</Form>
);
};
MIT © akarande777
FAQs
React form decorator
We found that react-form-decorator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.