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
edit-v2form.tsx
13 lines
| 1 | import {StrictMode} from 'react'; |
| 2 | import {createRoot} from 'react-dom/client'; |
| 3 | import EditForm from './components/Onboarding/Components/EditForm'; |
| 4 | import './colors.scss'; |
| 5 | |
| 6 | const root = createRoot(document.getElementById('give-admin-edit-v2form')); |
| 7 | |
| 8 | root.render( |
| 9 | <StrictMode> |
| 10 | <EditForm /> |
| 11 | </StrictMode> |
| 12 | ); |
| 13 |