```
Using `reactToWebComponent` with a few provided attributes, while also not filling out the `colorMode` or `buttonVariant`. This will cause the component to render with [Theme Provider's Light Theme](https://mui.com/material-ui/customization/dark-mode/), and with the text variant for Material UI's [Button Component](https://mui.com/material-ui/react-button/)
If we access those attributes (`colorMode` and `buttonVariant`):
```html
Greeting Demo
```
The Theme Provider will use the Dark Theme instead, and the Button Component wiill use the contained variant.
Thus, using `reactToWebComponent` you can interact with React Components using Third Party Libraries with ease.