MCPcopy Create free account
hub / github.com/MagicCube/agentara / CommitFiles

Function CommitFiles

web/src/components/ai-elements/commit.tsx:275–283  ·  view source on GitHub ↗
({
  className,
  children,
  ...props
}: CommitFilesProps)

Source from the content-addressed store, hash-verified

273export type CommitFilesProps = HTMLAttributes<HTMLDivElement>;
274
275export 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
285export type CommitFileProps = HTMLAttributes<HTMLDivElement>;
286

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected