Skip to main content
Module

x/aleph/examples/hello-world/components/logo.tsx

The Full-stack Framework in Deno.
Go to Latest
File
import React from 'https://esm.sh/react'
export default function Logo({ width = 75 }: { width?: number }) { return ( <img src="/logo.svg" width={width} title="Aleph.js" /> )}