components
1 year 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
14 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 | createRoot(root).render( |
| 9 | <StrictMode> |
| 10 | <DonationFormsListTable /> |
| 11 | </StrictMode> |
| 12 | ); |
| 13 | |
| 14 |