UNPKG

@gluestack-ui/alert-dialog

Version:

A universal headless alert-dialog component for React Native, Next.js & React

6 lines (5 loc) 226 B
import React, { forwardRef } from 'react'; const AlertDialogBody = (StyledAlertDialogBody) => forwardRef(({ ...props }, ref) => { return (<StyledAlertDialogBody ref={ref} {...props}/>); }); export default AlertDialogBody;