Basic Usage
This example demonstrates how to use useSitare with standard HTML input and button elements.
import { useSitare } from '@vassale/sitare';
export function BasicDemo() {
const { inputProps, btnProps } = useSitare();
return (
<div>
<input {...inputProps} />
<button {...btnProps} />
</div>
);
}