zanekwok's picture
init
450060f
raw
history blame contribute delete
176 Bytes
import { ReactNode } from "react"
export function Field({ children }: { children: ReactNode }) {
return (
<div className="flex flex-col space-y-2">{children}</div>
)
}