UNPKG

payzli-ui-aryan

Version:

A custom react components library

12 lines (11 loc) 253 B
import React from "react"; interface ISectionProps { title: string; children: React.ReactNode; className?: string; } declare const Section: { (props: ISectionProps): React.JSX.Element; displayName: string; }; export default Section;