()
| 3 | import { getJsonDoc } from '../../services/getJsonDoc'; |
| 4 | |
| 5 | export async function getServerSideProps() { |
| 6 | const spec = getJsonDoc(); |
| 7 | return { |
| 8 | props: { |
| 9 | spec, |
| 10 | }, |
| 11 | }; |
| 12 | } |
| 13 | |
| 14 | export default function index({ spec }) { |
| 15 | return ( |
nothing calls this directly
no test coverage detected