Video: Detail Page
Remix For Everyone
Released: 2021-12-31
- 
			1. What Is Remix? 3m59s 
- 
			2. Installing Remix 9m23s 
- 
			3. Code Tour 13m10s 
- 
			4. Creating Pages 6m21s 
- 
			5. Nested Layouts 9m17s 
- 
			6. Loader 101 9m14s 
- 
			7. Parameterized Routes 4m40s 
- 
			8. Loading Data From An API 7m44s 
- 
			9. Detail Page 8m42s 
- 
			10. CSS In Remix 11m52s 
- 
			11. Typescript 8m44s 
- 
			12. Module API 9m25s 
- 
			13. Error Handling 7m25s 
- 
			14. Redirects 9m2s 
- 
			15. Forms 10m50s 
- 
			16. CSS Cleanup 8m52s 
- 
			17. Actions 12m22s 
- 
			18. useTransition 7m22s 
- 
			19. Sitemap With Resource Routes 7m14s 
- 
			20. Dynamic Sitemap 7m11s 
- 
			21. Outlet Context 4m42s 
- 
			22. Routing Extras 8m44s 
- 
			23. Deploying To Vercel 7m38s 
- 
			24. Where To Go From Here 1m25s 
Detail Page
Use params to create slugs to utilize it to hit the API and fetch more podcast episodes.
const response = await fetch("https://syntax.fm/api.shows/" + params.show);
dangerouslySetInnterHTML={{ __html: show.html}}