MCPcopy Create free account
hub / github.com/ZenNotes/zennotes / CellProps

Interface CellProps

packages/app-core/src/components/DatabaseTableView.tsx:740–747  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

738}
739
740interface CellProps {
741 field: DbField
742 value: string
743 editing: boolean
744 onStartEdit: () => void
745 onEndEdit: () => void
746 onCommit: (value: string) => void
747}
748
749function Cell({ field, value, editing, onStartEdit, onEndEdit, onCommit }: CellProps): JSX.Element {
750 if (field.type === 'checkbox') {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected