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