components
11 months ago
add-v2form.tsx
1 year ago
admin-donation-forms.tsx
1 year ago
colors.scss
2 years ago
edit-v2form.tsx
1 year ago
admin-donation-forms.tsx
15 lines
| 1 | import {StrictMode} from 'react'; |
| 2 | import {createRoot} from 'react-dom/client'; |
| 3 | import DonationFormsListTable from './components/DonationFormsListTable'; |
| 4 | import './colors.scss'; |
| 5 | |
| 6 | const root = document.getElementById('give-admin-donation-forms-root'); |
| 7 | |
| 8 | if (!!root) { |
| 9 | createRoot(root).render( |
| 10 | <StrictMode> |
| 11 | <DonationFormsListTable /> |
| 12 | </StrictMode> |
| 13 | ); |
| 14 | } |
| 15 |