I have setup gatsby project using this link. It is working correctly.
Now I know how to create route by defining the component inside the pages
folder. But now I have a new challenge I need to create one dynamic route so that I can pass my id
in it (Just like reactjs
).
<Route path: "/path/:id"/>
How do I do that in gatsby?
/app
from my route? – Camelliacamelopard