Skip to main content
Module

x/aleph/examples/hello-world-spa/app.tsx

The Full-stack Framework in Deno.
Go to Latest
File
import React, { ComponentType } from 'react'
export default function App({ Page, pageProps }: { Page: ComponentType<any>, pageProps: any }) { return ( <main> <head> <meta name="viewport" content="width=device-width" /> </head> <Page {...pageProps} /> </main> )}