Add channel skip profiles

This commit is contained in:
Ajay
2025-09-09 03:34:28 -04:00
parent 13f9914711
commit 40eabe6b18
24 changed files with 1417 additions and 525 deletions

View File

@@ -1,24 +1,16 @@
import * as React from "react";
import { createRoot } from 'react-dom/client';
import CategoryChooserComponent from "../components/options/CategoryChooserComponent";
import { CategoryChooserComponent } from "../components/options/CategoryChooserComponent";
class CategoryChooser {
ref: React.RefObject<CategoryChooserComponent>;
constructor(element: Element) {
this.ref = React.createRef();
const root = createRoot(element);
root.render(
<CategoryChooserComponent ref={this.ref} />
<CategoryChooserComponent />
);
}
update(): void {
this.ref.current?.forceUpdate();
}
}
export default CategoryChooser;