{tokenName}
308 |{tokenDescription}
309 | 310 |Result: {result}
315 |OutputData: {outcome}
316 |TokenId: {tokenId}
317 |TokenURI: {tokenURI}
318 |ImageURI: {tokenImageURI}
319 |OwnerAddress: {ownerAddress}
320 |An error occurred on client
12 | ) 13 | } 14 | 15 | ErrorPage.getInitialProps = ({ res, err }: NextPageContext) => { 16 | const statusCode = res ? res.statusCode : err ? err.statusCode : 404 17 | return { statusCode } 18 | } 19 | 20 | export default ErrorPage -------------------------------------------------------------------------------- /ui/viewer/pages/index.tsx: -------------------------------------------------------------------------------- 1 | import { NextPage } from 'next' 2 | import dynamic from 'next/dynamic' 3 | 4 | const Canvas = dynamic(() => import('../components/IndexCanvas'), { 5 | ssr: false, 6 | loading: () => 7 |
8 |
9 |