snacks.nvim/tests/image/test.jsx
Folke Lemaitre 95878ad32a
Some checks failed
CI / ci (push) Failing after 0s
feat(image): adde support for Image in jsx
2025-02-16 15:13:34 +01:00

11 lines
190 B
JavaScript

export const Modal = (props) => {
return (
<Show>
<Image src="test.png" />
<img src="test.png" />
<img src="https://picsum.photos/200/300"></img>
</Show>
)
}