Missing Components features returns old convention coding style.
it should without builder like conventions.Add..
function renderTypeSample([ type ]) {
return String.raw`builder.Conventions.AddTypeComponent${component ? `<${component}>` : ""}(
when: c => c.Type.Is<${type}>(),
where: cc => cc.Path.EndsWith(${path.map(p => `"${p}"`).join(", ")}),
component: () => ${component ? "..." : "B.Text()"}
);`;
Missing Components features returns old convention coding style.
it should without
builderlikeconventions.Add..