Add clip player

This commit is contained in:
2022-04-29 12:12:06 +08:00
parent c923efcd99
commit bc67782365
9 changed files with 246 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
import { Component, ReactNode } from "react";
import "./ClipPlayer.scss";
class ClipPlayer extends Component {
public render(): ReactNode {
return <>
</>;
}
}
export { ClipPlayer };
+10
View File
@@ -0,0 +1,10 @@
import { Component, ReactNode } from "react";
import { Recorder } from "@Component/Recorder/Recorder";
class ClipRecorder extends Component {
public render(): ReactNode {
return <Recorder/>
}
}
export { ClipRecorder };