first commit

This commit is contained in:
Om Prakash Das
2026-07-02 18:39:11 +05:30
commit ed3eba27ec
251 changed files with 36276 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import type { ComponentPropsWithRef } from "react";
import { Form as AriaForm } from "react-aria-components";
export const Form = (props: ComponentPropsWithRef<typeof AriaForm>) => {
return <AriaForm {...props} />;
};
Form.displayName = "Form";