Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
type ReactProps = {
[P in keyof T]?: DetailedHTMLProps, T[P]>;
};
type StencilToReact = StencilProps &
ReactProps<u>;
declare global {
// eslint-disable-next-line @typescript-eslint/no-namespace
export namespace JSX {
interface IntrinsicElements extends StencilToReact { }
}
}
applyPolyfills().then(() => {
defineCustomElements(window);
});
ReactDOM.render(, document.getElementById('root'));
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.register();
</u>