Files
sigpro-ui/components/discarted/stack.js
natxocc 910c6ab3c7
All checks were successful
Deploy Docs to Synology / deploy (push) Successful in 4s
Before repair nav components
2026-04-25 11:24:39 +02:00

7 lines
238 B
JavaScript

// components/Stack.js
import { h } from "sigpro";
export const Stack = (props, children) => {
children === undefined && (children = props, props = {});
return h("div", { ...props, class: `stack ${props.class ?? ''}` }, children);
};