mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-11 22:17:21 +03:00
15 lines
349 B
TypeScript
15 lines
349 B
TypeScript
import * as React from "react";
|
|
import * as ReactDOM from "react-dom";
|
|
import CategoryChooserComponent from "../components/CategoryChooserComponent";
|
|
|
|
class CategoryChooser {
|
|
|
|
constructor(element: Element) {
|
|
ReactDOM.render(
|
|
<CategoryChooserComponent/>,
|
|
element
|
|
);
|
|
}
|
|
}
|
|
|
|
export default CategoryChooser; |