describe("JSX", () => { it("should render basic", () => { const Component = () => { console.log("Component"); return (
First
); }; const rendered = (
Second
); console.log(JSON.stringify(rendered, null, 2)); }); });