MCPcopy Create free account
hub / github.com/CommandCodeAI/BaseAI / Step

Function Step

apps/baseai.dev/src/components/Heading.tsx:140–150  ·  view source on GitHub ↗
({ stepNumber }: { stepNumber: string | null })

Source from the content-addressed store, hash-verified

138}
139
140function Step({ stepNumber }: { stepNumber: string | null }) {
141 if (!stepNumber) return <></>;
142 return (
143 <span className="relative left-12 right-0 top-0 mb-2 ml-0 flex -translate-x-[calc(91%)] transform justify-end rounded-lg bg-background px-4 py-2 font-mono text-xs uppercase leading-tight shadow md:left-0 3xl:absolute 3xl:w-full 3xl:-translate-x-[calc(100%+3vw)] 3xl:justify-end 3xl:rounded-r-lg">
144 <span className="flex">
145 Step <span className="ml-1 text-muted-foreground/80">#</span>
146 {stepNumber}
147 </span>
148 </span>
149 );
150}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected