| 1 | import {createRoot} from '@wordpress/element'; |
| 2 | import DonationDetailsPage from './components/DonationDetailsPage'; |
| 3 | |
| 4 | const container = document.getElementById('give-admin-donations-root'); |
| 5 | |
| 6 | if (container) { |
| 7 | const root = createRoot(container); |
| 8 | root.render(<DonationDetailsPage />); |
| 9 | } |
| 10 |