greact/test/base.test.tsx
Benjamin Palko 7639585a91 setup
2025-04-14 09:05:19 -04:00

19 lines
330 B
TypeScript

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