'use client'; import React from 'react'; import { Overlay } from '@gluestack-ui/overlay'; import { cssInterop } from 'nativewind'; cssInterop(Overlay, { className: 'style' }); const Portal = React.forwardRef< React.ComponentRef, React.ComponentProps >(function Portal({ ...props }, ref) { return ; }); Portal.displayName = 'Portal'; export { Portal };