jsx: 1.0.0-beta.1 vue: 3.0.0-beta.20 ```js return ( <> <h1>test</h1> {false && ( <h1>test</h1> )} </> ); return ( <> {false && ( <h1>test</h1> )} <h1>test</h1> </> ); ``` Keeps failing with `Invalid VNode type: undefined (undefined)` error. ```js return ( <> {false && ( <h1>test</h1> )} </> ); ``` If you leave only the conditional, it works fine.