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