diff --git a/components/episodesidebar.js b/components/episodesidebar.js new file mode 100755 index 0000000..9e2938d --- /dev/null +++ b/components/episodesidebar.js @@ -0,0 +1,14 @@ +import Link from 'next/link' + +const EpisodeSideBar = (epdata) => ( +
+ {epdata.episodes.map((episode) => ( +
+

{episode.title}

+
+
+ ))} +
+ ); + +export default EpisodeSideBar \ No newline at end of file