mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
4 lines
133 B
TypeScript
4 lines
133 B
TypeScript
import type React from 'react';
|
|
|
|
export type ReactComponentOrElement = React.ComponentClass<any, any> | React.FC<any> | JSX.Element;
|