score:0

i think you are mixing stuff. gatsby extends from @reach/router so you don't need to use its notation. your link should look like:

<link
  to={`/article`}
  state={{
    title: props.title,
    introduction: props.introduction  
  }}
>

assuming your /article page exists under /pages folder.


Related Query

More Query from same tag