MCPcopy Create free account
hub / github.com/AggieSportsAnalytics/CourtCheck / Field

Function Field

frontend/web/components/auth/Field.tsx:5–13  ·  view source on GitHub ↗
({
  children,
  className,
}: {
  children: React.ReactNode
  className?: string
})

Source from the content-addressed store, hash-verified

3import { cn } from '@/lib/utils'
4
5function Field({
6 children,
7 className,
8}: {
9 children: React.ReactNode
10 className?: string
11}) {
12 return <div className={cn('grid gap-1.5', className)}>{children}</div>
13}
14
15function FieldLabel({
16 children,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected