first commit

This commit is contained in:
2025-12-27 18:23:41 +03:00
commit 63a9425680
197 changed files with 7078 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import React from "react";
export function FormItem(props: React.PropsWithChildren) {
return <div style={{ display: "grid", gap: 12 }}>{props.children}</div>;
}