index.tsx 130 B

12345678910
  1. export default function IndexPage(props) {
  2. console.log(props.location)
  3. return (
  4. <div>
  5. <h1>Page index</h1>
  6. </div>
  7. );
  8. }