jbilcke-hf's picture
jbilcke-hf HF staff
we now have.. custom models β˜„οΈ.. and settings ✨
11d758a
raw
history blame
No virus
176 Bytes
import { ReactNode } from "react"
export function Field({ children }: { children: ReactNode }) {
return (
<div className="flex flex-col space-y-2">{children}</div>
)
}