pjatupon
pjatupon
I want to display like this 
> I had a similar problem, downgrading @react-aria/i18n to version 3.11.1 solved the problem. It's work. Thank you. 
i found solution check iframe loaded like this ``` const iframeRef = useRef(null); const [isIFrameLoaded, setIsIFrameLoaded] = useState(false); const iframeCurrent = iframeRef.current; useEffect(() => { iframeCurrent?.addEventListener('load', () => setIsIFrameLoaded(true)); return...
@ElementaitaStopover I can't found any solution. But I create custom component base on this vendor. It work for me. 
my application develop by nextjs + nextui. first. install popover `npm install @nextui-org/popover` second. create component file name "monthPicker.tsx" ``` import { Button, Popover, PopoverContent, PopoverTrigger } from '@nextui-org/react'; import...