Skip to content

Commit

Permalink
Use correct case for YouTube
Browse files Browse the repository at this point in the history
  • Loading branch information
Pelsin committed Jan 3, 2025
1 parent 30e88ac commit ea5013a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/YoutubePlayer.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from "react";
import styles from "@site/src/components/youtubePlayer.module.css";
import styles from "@site/src/components/youTubePlayer.module.css";

type YoutubePlayerTypes = {
type YouTubePlayerTypes = {
videoId: string;
};

const YoutubePlayer = ({ videoId }: YoutubePlayerTypes) => (
const YouTubePlayer = ({ videoId }: YouTubePlayerTypes) => (
<div className={styles.container}>
<iframe
allowFullScreen
Expand All @@ -16,4 +16,4 @@ const YoutubePlayer = ({ videoId }: YoutubePlayerTypes) => (
</div>
);

export default YoutubePlayer;
export default YouTubePlayer;

0 comments on commit ea5013a

Please sign in to comment.