Skip to main content
Module

x/aleph/examples/spa-mode/app.tsx

The Full-stack Framework in Deno.
Very Popular
Go to Latest
File
import type { ComponentType } from 'react'import React from 'react'
export default function App({ Page, pageProps }: { Page: ComponentType<any>, pageProps: any }) { return ( <main> <head> <title>Hello World - Aleph.js</title> </head> <Page {...pageProps} /> </main> )}