UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

9 lines (8 loc) 265 B
import { ReactNode } from 'react'; interface SectionProps { 'children': ReactNode; 'data-footnotes'?: boolean; 'showFootnotes'?: boolean; } declare const Section: (props: SectionProps) => import("react/jsx-runtime").JSX.Element; export default Section;