Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 176 Bytes
11d758a |
1 2 3 4 5 6 7 |
import { ReactNode } from "react"
export function Field({ children }: { children: ReactNode }) {
return (
<div className="flex flex-col space-y-2">{children}</div>
)
} |