apheleia/test/formatters/samplecode/denofmt-jsx/in.jsx

18 lines
225 B
React
Raw Normal View History

2023-11-30 03:25:11 +08:00
const Foo = ({name,
test}
) => {
return <>
<h1>hello, {name}</h1>
<div>{test}</div>
</>
;
};
const Bar = () => {
return (
<>
<Foo name="aaa" test="bbb" />
</>
)
}