apheleia/test/formatters/samplecode/denofmt-jsx/out.jsx
2023-11-29 19:25:11 +00:00

16 lines
212 B
JavaScript

const Foo = ({ name, test }) => {
return (
<>
<h1>hello, {name}</h1>
<div>{test}</div>
</>
);
};
const Bar = () => {
return (
<>
<Foo name="aaa" test="bbb" />
</>
);
};