Skip to content

Commit

Permalink
integrate YouTube playlist component
Browse files Browse the repository at this point in the history
  • Loading branch information
thescientist13 committed Oct 23, 2022
1 parent c063a01 commit 1c37550
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import fetch from 'node-fetch';
import '../components/cast-and-crew/cast-and-crew.js';
import '../components/upcoming-events/upcoming-events.js';
import '../components/spotify-playlist/spotify-playlist.js';
import '../components/youtube-playlist/youtube-playlist.js';

export default class Home extends HTMLElement {
async connectedCallback() {
Expand All @@ -19,9 +20,11 @@ export default class Home extends HTMLElement {
events='${JSON.stringify(events).replace(/'/g, '\\"')}'
></tt-upcoming-events>
<tt-cast-crew></tt-cast-crew>
<tt-youtube-playlist></tt-youtube-playlist>
<tt-spotify-playlist></tt-spotify-playlist>
<tt-cast-crew></tt-cast-crew>
`;
}
}

0 comments on commit 1c37550

Please sign in to comment.