hookshot/web/index.tsx
Will Hunt 1e8a112a28
Drop ignoreHooks configuration. (#592)
* Refactor HookFilter to only support enabledEvents (and add a function to convert)

* Convert connections to deprecate ignoreHooks

* Update documentation

* Split out EventHookCheckbox

* Refactor frontend to support enableHooks only mode

* drop old field name

* changelog

* Fix enabledHooks for widgets

* Fixes across the board

* Update test description

* Cleanup

* Fix HookFilter

* Fixup checkboxes

* Cleanup
2023-01-10 17:08:50 +00:00

11 lines
232 B
TypeScript

import { render } from 'preact';
import 'preact/devtools';
import App from './App';
import "./fonts/fonts.scss"
import "./styling.scss";
const root = document.getElementsByTagName('main')[0];
if (root) {
render(<App />, root);
}