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

17 lines
225 B
JavaScript

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