UNPKG

website-session-kit

Version:

A modular and extensible session management toolkit for modern websites.

13 lines (12 loc) 400 B
import React from 'react'; interface Props { children: React.ReactNode; bgColor?: string; className?: string; height?: string; } /** * Main container for landing pages or sections, allowing dynamic background and height. */ declare const LpMainContainer: ({ children, height, bgColor, className, }: Props) => import("react/jsx-runtime").JSX.Element; export default LpMainContainer;