0.1.0 • Published 5 years ago
Share package design-system react-support A wrapper to handle custom events within any custom elements you want to use within react.
It will also destory the events on unmount for you.
Installation npm npm i `@ornery/react-web-components` --saveyarn yarn add `@ornery/react-web-components`React Component import WebComponentWrapper from `@ornery/react-web-components`
export const wrapped = () => (
<WebComponentWrapper tag="my-element" onMyCustomEvent={()=> console.log('I haz cuztem events!')} />
)Attributes Attribute Type Description on(.*)Func(.*) is the event to listen to camelCased. It is converted to kebab-case. If your CustomEvent's name is custom-event-name you need to set the prop as onCustomEventName in react. tagStringtag to render
Properties Methods Method Type componentDidMount(): voidcomponentWillUnmount(): void