import { NonEmptyArray } from "../../../global.ts"; import { Technology } from "../domain/mod.ts"; import { AnyNode, TextNode } from "ren/node.ts"; export const TechnologyList: (techs: NonEmptyArray) => AnyNode = ( techs, ) => new TextNode(techs.join(", "));