UNPKG

react-flash-modal

Version:

A lightweight and flexible React modal component with smooth animations and easy customization. Perfect for modern web applications. Can be easily integrated into any project.

10 lines (8 loc) 209 B
import { StrictMode } from 'react' import { createRoot } from 'react-dom/client' import App from './App.jsx'; createRoot(document.getElementById('root')).render( <StrictMode> <App /> </StrictMode>, )