jbilcke-hf's picture
jbilcke-hf HF staff
add toggle for video orientation
93ad82e
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>
)
}