summaryrefslogtreecommitdiff
path: root/src/webex/pages/auditors.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/webex/pages/auditors.tsx')
-rw-r--r--src/webex/pages/auditors.tsx6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/webex/pages/auditors.tsx b/src/webex/pages/auditors.tsx
index e2bb29af1..e933aeace 100644
--- a/src/webex/pages/auditors.tsx
+++ b/src/webex/pages/auditors.tsx
@@ -151,8 +151,6 @@ class CurrencyList extends React.Component<{}, CurrencyListState> {
}
}
-function main() {
- ReactDOM.render(<CurrencyList />, document.getElementById("container")!);
+function makeAuditorsPage() {
+ return <CurrencyList />;
}
-
-document.addEventListener("DOMContentLoaded", main);