MCPcopy Create free account
hub / github.com/code100x/photo-ai / Code

Function Code

packages/ui/src/code.tsx:3–11  ·  view source on GitHub ↗
({
  children,
  className,
}: {
  children: React.ReactNode;
  className?: string;
})

Source from the content-addressed store, hash-verified

1import { type JSX } from "react";
2
3export function Code({
4 children,
5 className,
6}: {
7 children: React.ReactNode;
8 className?: string;
9}): JSX.Element {
10 return <code className={className}>{children}</code>;
11}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected