import { h } from "preact"; export function Welcome({ name, asd }: { asd?: string; name?: string }) { return (
{asd} Hello {name}
); }