サイトルートと別のページコンポーネントの間でルートを共有したい単純な gatsby サイトがあります。
だから私は欲しい:
1. / => to go to the component in pages/myComponent
2. /myComponent/ => to go to the component in pages/myComponent
状況 2 はすぐに使用できますが、ルートを取得する方法がわからないので、それ以外の方法に進みます。pages/index.js
myComponent
このように内部にネストしようとしましindex.js
たが、ページクエリの適切な設定を取得できないため、ルーティングが進むべき道だと思いますか?
index.js
import React from 'react'
import myComponent from './myComponent'
export default function IndexPage ({ data }) {
return (<myComponent data={data}/>)
}
export const pageQuery = graphql`...some query`;