mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-10 21:47:06 +03:00
Add advanced skip options
This commit is contained in:
15
src/render/AdvancedSkipOptions.tsx
Normal file
15
src/render/AdvancedSkipOptions.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import * as React from "react";
|
||||
import { createRoot } from 'react-dom/client';
|
||||
|
||||
import { AdvancedSkipOptionsComponent } from "../components/options/AdvancedSkipOptionsComponent";
|
||||
|
||||
class AdvancedSkipOptions {
|
||||
constructor(element: Element) {
|
||||
const root = createRoot(element);
|
||||
root.render(
|
||||
<AdvancedSkipOptionsComponent />
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default AdvancedSkipOptions;
|
||||
Reference in New Issue
Block a user