seqcolyte / studio /src /components /spec /tech-spec.tsx
seqmachines's picture
Deploy Seqcolyte Studio
8ffc9f7 verified
Raw
History Blame Contribute Delete
270 Bytes
"use client";
import { SpecPanel } from "@/components/spec/spec-panel";
/** Mounts the shared SpecPanel against a technology's wiki spec endpoint. */
export function TechSpec({ id }: { id: string }) {
return <SpecPanel specUrl={`/api/technologies/${id}/spec`} />;
}