I made a test component with jsx: ``` //test.jsx import { defineComponent } from "vue"; export default defineComponent({ render() { return <div>Parent</div>; } }); ``` When I try to use it the app crashes with the following error: 