mirror of
https://github.com/nestriness/nestri.git
synced 2025-12-15 18:25:37 +02:00
✨ feat: Add /home (#111)
This commit is contained in:
12
packages/ui/src/modal/modal-content.tsx
Normal file
12
packages/ui/src/modal/modal-content.tsx
Normal 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>
|
||||
);
|
||||
});
|
||||
Reference in New Issue
Block a user