UNPKG

nexpi-ui

Version:

An elegant and minimalist Next.js 14 component library

9 lines (8 loc) 232 B
import React from 'react'; interface SectionProps { id: string; children: React.ReactNode; offset?: string; } declare const Section: ({ id, children, offset }: SectionProps) => React.JSX.Element; export default Section;