admin
5 months ago
components
8 months ago
constants
8 months ago
hooks
8 months ago
admin-donors.tsx
1 year ago
types.ts
11 months ago
utils.ts
10 months ago
admin-donors.tsx
12 lines
| 1 | import {StrictMode} from 'react'; |
| 2 | import {createRoot} from 'react-dom/client'; |
| 3 | import DonorsListTable from './components/DonorsListTable'; |
| 4 | |
| 5 | const root = createRoot(document.getElementById('give-admin-donors-root')); |
| 6 | |
| 7 | root.render( |
| 8 | <StrictMode> |
| 9 | <DonorsListTable /> |
| 10 | </StrictMode>, |
| 11 | ); |
| 12 |