mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-11 22:17:21 +03:00
Add a section in options for unsubmitted segments
This commit is contained in:
15
src/render/UnsubmittedVideos.tsx
Normal file
15
src/render/UnsubmittedVideos.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import * as React from "react";
|
||||
import * as ReactDOM from "react-dom";
|
||||
import UnsubmittedVideosComponent from "../components/UnsubmittedVideosComponent";
|
||||
|
||||
class UnsubmittedVideos {
|
||||
|
||||
constructor(element: Element) {
|
||||
ReactDOM.render(
|
||||
<UnsubmittedVideosComponent/>,
|
||||
element
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
export default UnsubmittedVideos;
|
||||
Reference in New Issue
Block a user