UNPKG

seti-ramesesv1

Version:

Reusable components and context for Next.js apps

9 lines (8 loc) 270 B
import React from "react"; type PanelProps = { visibleWhen?: boolean; children?: React.ReactNode; className?: string; }; declare function Panel({ visibleWhen, children, className }: PanelProps): import("react/jsx-runtime").JSX.Element; export default Panel;