feat: Add /home (#111)

This commit is contained in:
Wanjohi
2024-09-13 17:41:34 +03:00
committed by GitHub
parent 1b1bedff36
commit c30673f5a1
48 changed files with 4720 additions and 116 deletions

View File

@@ -0,0 +1,12 @@
import { type PropsOf, Slot, component$ } from '@builder.io/qwik';
/**
* @deprecated This component is deprecated and will be removed in future releases.
*/
export const HModalContent = component$((props: PropsOf<'div'>) => {
return (
<div {...props}>
<Slot />
</div>
);
});