mirror of
https://github.com/vale981/apheleia
synced 2025-03-05 17:41:41 -05:00
18 lines
225 B
React
18 lines
225 B
React
![]() |
const Foo = ({name,
|
||
|
test}
|
||
|
) => {
|
||
|
return <>
|
||
|
<h1>hello, {name}</h1>
|
||
|
<div>{test}</div>
|
||
|
</>
|
||
|
;
|
||
|
};
|
||
|
|
||
|
const Bar = () => {
|
||
|
return (
|
||
|
<>
|
||
|
<Foo name="aaa" test="bbb" />
|
||
|
</>
|
||
|
)
|
||
|
}
|