Skip to main content
Module

x/aleph/examples/hi/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> <link rel="stylesheet" href="./style/app.css" /> <Page {...pageProps} /> </main> )}