Add a section in options for unsubmitted segments

This commit is contained in:
mini-bomba
2022-08-19 21:05:45 +02:00
committed by Ajay
parent 2b5a02e068
commit 9915d46ad4
7 changed files with 274 additions and 29 deletions

View 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;