mirror of
https://github.com/vale981/apheleia
synced 2025-03-05 09:31:40 -05:00
17 lines
225 B
JavaScript
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" />
|
|
</>
|
|
)
|
|
}
|