GoScrobble/web/node_modules/reactjs-popup/dist/stories/components/Content.d.ts

9 lines
232 B
TypeScript
Raw Permalink Normal View History

2022-04-25 02:47:15 +00:00
import { ReactNode } from 'react';
declare type Props = {
children: ReactNode;
close?: () => void;
title?: string;
};
export declare const Content: ({ children, close, title, }: Props) => JSX.Element;
export {};