react-animate.css icon indicating copy to clipboard operation
react-animate.css copied to clipboard

Error vNodes using createVNode is not allowed

Open rodhoward opened this issue 7 years ago • 0 comments

I'm getting this error at run time:

Creating Component vNodes using createVNode is not allowed. Use Inferno.createComponentVNode method.

My code is:

import Animate from 'inferno-animate-css';
...
...

 render() {
        return (
            <div>
                <Animate
                    appear="fadeInDown"
                    durationAppear={1000}
                    component="div" >

                    <h1>inferno animate.css</h1>

                </Animate>
</div>
);
}

I'm using chrome on linux. .tsx with fuse-box, ts-transform-inferno.

rodhoward avatar Jun 12 '18 00:06 rodhoward