UNPKG

@vertisanpro/flowbite-react

Version:

Non-Official React components built for Flowbite and Tailwind CSS

8 lines (7 loc) 208 B
'use client'; import { useEffect, useState } from 'react'; export function useIsMounted() { const [mounted, setMounted] = useState(false); useEffect(() => setMounted(true), []); return mounted; }