Skip to content

Commit 3dc649c

Browse files
committed
Release 0.2.2
1 parent e2d1033 commit 3dc649c

6 files changed

Lines changed: 131 additions & 104 deletions

File tree

docs/custom-element.d.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import 'endr/jsx-runtime';
2+
3+
declare module 'endr/jsx-runtime' {
4+
namespace JSX {
5+
interface IntrinsicElements {
6+
'my-custom-element': { myCustomProp: string };
7+
}
8+
}
9+
}

docs/dist.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,7 @@ const Root = () => {
428428
>
429429
Unmount
430430
</button>
431+
<my-custom-element myCustomProp='foo' />
431432
</Context>
432433
);
433434
};

0 commit comments

Comments
 (0)