Restructure routes, add tests and make pathmap dynamic

This commit is contained in:
Kamran Ahmed
2019-11-06 21:37:16 +04:00
parent 159741f0af
commit 796f1cdac0
23 changed files with 1798 additions and 99 deletions

View File

@@ -16,7 +16,7 @@ const FeaturedGuides = () => (
{ guides
.filter(({ featured }) => featured)
.map(guide => (
<GuideBlock guide={ guide } key={ guide.slug } />
<GuideBlock guide={ guide } key={ guide.url } />
)) }
</div>
</div>