import type { AgdpNodeDef } from "@/features/home/constants/process_contents"; import { AGDP_SLOT_WRAPPER_CLASS } from "@/features/home/constants/process_contents"; type Props = { node: AgdpNodeDef }; export function AgdpOrbitNode({ node }: Props) { const wrapperClass = AGDP_SLOT_WRAPPER_CLASS[node.slot]; return (
{node.letter}
{node.label}
); }