"use client"; import SectionHeader from "../../type/SectionHeader"; import Button from "../../buttons/Button"; import { GovernanceTemplateGrid } from "../GovernanceTemplateGrid"; import { GovernanceTemplateGridSkeleton } from "../GovernanceTemplateGrid/GovernanceTemplateGridSkeleton"; import type { RuleStackViewProps } from "./RuleStack.types"; /** Figma **Section / RuleStack** [22085:860413](https://www.figma.com/design/agv0VBLiBlcnSAaiAORgPR/Community-Rule-System?node-id=22085-860413&m=dev). */ export function RuleStackView({ className, onTemplateClick, gridEntries, sectionTitle, sectionSubtitle, seeAllTemplatesLabel, twoColumnsFromMd = false, }: RuleStackViewProps) { return (
{gridEntries === null ? ( ) : ( )}
); }