rsnext/test/e2e/app-dir/hooks/pages/adapter-hooks/static.js
Jiachi Liu 484f4724f4
Separate navigation and hooks tests into new test suites (#45766)
Moving tests to reduce app-dir/app/index.test.ts running duration
2023-02-10 00:38:39 +00:00

9 lines
210 B
JavaScript

import { RouterHooksFixtures } from '../../components/router-hooks-fixtures'
export default function Page() {
return <RouterHooksFixtures />
}
export const getStaticProps = () => {
return { props: {} }
}