Milo Xeon

Results 21 comments of Milo Xeon

Examples are very good. I'd prefer if at least the basic example was on readme, as well as the link to docs/Examples. Also codesandbox with all the imports and a...

Same problem here. I'm also using Vite.

I know it's a hack, but the following solves this error. I defined `global` myself just for it to not be `undefined`: ```HTML global = {} ``` In `index.html`: ```HTML...

I checked and it really fixes the problem. Please, merge this.

But why it's needed to abandon Swarm then? And where to look for the tool that might replace Swarm?

This is my code: ``` class WrappedButton extends Component { render () { return ( { this.props.children } ) } } ... component={ WrappedButton } ``` This fails miserably: ```...

@nihey I strongly suggest you not to control `children`. Let them be `PropTypes.any`.

@nihey checked this out. I'm still getting this error ``` Warning: Failed prop type: Invalid prop `children` supplied to `ClipboardButton`. ``` no matter stateless or stateful `component` I pass.

It works. Great job so far. Now you clearly can see how much of unusual complexity do PropTypes offer. Please, don't use some tool just because "it's a de-facto standard"...