components
2 years ago
add-v2form.tsx
2 years ago
admin-donation-forms.tsx
2 years ago
colors.scss
2 years ago
edit-v2form.tsx
2 years ago
add-v2form.tsx
16 lines
| 1 | import {StrictMode} from 'react'; |
| 2 | import ReactDOM from 'react-dom'; |
| 3 | import AddForm from './components/Onboarding/Components/AddForm'; |
| 4 | import './colors.scss'; |
| 5 | |
| 6 | const appContainer = document.createElement('div'); |
| 7 | const target = document.querySelector('.wp-header-end'); |
| 8 | target.parentNode.insertBefore(appContainer, target); |
| 9 | |
| 10 | ReactDOM.render( |
| 11 | <StrictMode> |
| 12 | <AddForm /> |
| 13 | </StrictMode>, |
| 14 | appContainer |
| 15 | ); |
| 16 |