Function
CommitFiles
({
className,
children,
...props
}: CommitFilesProps)
Source from the content-addressed store, hash-verified
| 273 | export type CommitFilesProps = HTMLAttributes<HTMLDivElement>; |
| 274 | |
| 275 | export const CommitFiles = ({ |
| 276 | className, |
| 277 | children, |
| 278 | ...props |
| 279 | }: CommitFilesProps) => ( |
| 280 | <div className={cn("space-y-1", className)} {...props}> |
| 281 | {children} |
| 282 | </div> |
| 283 | ); |
| 284 | |
| 285 | export type CommitFileProps = HTMLAttributes<HTMLDivElement>; |
| 286 | |
Callers
nothing calls this directly
Tested by
no test coverage detected