UNPKG

@ducor/react

Version:

admin template ui interface

10 lines (9 loc) 228 B
import React from "react"; interface SectionProps { title?: string; children?: React.ReactNode; className?: string; collapsable?: boolean; } declare const Section: React.FC<SectionProps>; export default Section;