UNPKG

website-session-kit

Version:

A modular and extensible session management toolkit for modern websites.

9 lines (8 loc) 396 B
import { jsx as _jsx } from "react/jsx-runtime"; /** * Main container for landing pages or sections, allowing dynamic background and height. */ const LpMainContainer = ({ children, height = 'h-full', bgColor = '', className = '', }) => { return (_jsx("div", { className: `${height} overflow-hidden w-full ${bgColor} ${className}`, children: children })); }; export default LpMainContainer;