|
1
|
import {StrictMode} from 'react'; |
|
2
|
import ReactDOM from 'react-dom'; |
|
3
|
import SubscriptionsListTable from './components/SubscriptionsListTable'; |
|
4
|
|
|
5
|
ReactDOM.render( |
|
6
|
<StrictMode> |
|
7
|
<SubscriptionsListTable /> |
|
8
|
</StrictMode>, |
|
9
|
document.getElementById('give-admin-subscriptions-root') |
|
10
|
); |
|
11
|
|