I have a string of React components .
//X.jsx
import "./x.css"
const X =({x}) =><div className={"x"} >{x}</div>
//Y.jsx
import "./y.css"
const Y =({y}) =><div className={"y"} >{y}</div>
`<X x={"x"}/> <Y x={"y"}/>`
I want to convert it to jsx how to do it ?