mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-09-16 04:15:33 -04:00
passing a custom link component to mdx was unnecessary
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import ReactPlayer from "react-player/lazy";
|
||||
import type { ReactPlayerProps } from "react-player";
|
||||
|
||||
const Video = (props: ReactPlayerProps) => (
|
||||
<div style={{ position: "relative", paddingTop: "56.25%" }}>
|
||||
<ReactPlayer width="100%" height="100%" style={{ position: "absolute", top: 0, left: 0 }} {...props} />
|
||||
</div>
|
||||
);
|
||||
|
||||
export default Video;
|
||||
Reference in New Issue
Block a user