UNPKG

@alifd/meet-react

Version:

Fusion Mobile React UI System Component

10 lines (9 loc) 386 B
import { ForwardRefExoticComponent, HTMLAttributes, RefAttributes } from 'react'; import './styles/index.scss'; export interface ViewProps extends RefAttributes<HTMLDivElement>, HTMLAttributes<HTMLDivElement> { onClick?: (evt?: any) => void; hasSafeArea?: boolean; 'disable-scroll'?: boolean; } declare const View: ForwardRefExoticComponent<ViewProps>; export default View;