rsnext/test/integration/telemetry/pages/ssg/[dynamic].js

10 lines
173 B
JavaScript
Raw Normal View History

export default () => 'Hello World'
export function getStaticProps() {
return { props: {} }
}
export function getStaticPaths() {
return { paths: [], fallback: true }
}