mirror of
https://github.com/vale981/apheleia
synced 2025-03-05 09:31:40 -05:00
20 lines
271 B
TypeScript
20 lines
271 B
TypeScript
const Foo: FooComponent = ({
|
|
name: string,
|
|
test: number}
|
|
) => {
|
|
return <>
|
|
<h1>hello, {name}</h1>
|
|
<div>{test}</div>
|
|
</>
|
|
;
|
|
};
|
|
|
|
const Bar
|
|
: BarComponent = ()=> {
|
|
return (
|
|
<>
|
|
<Foo name="aaa"
|
|
test={1} />
|
|
</>
|
|
)
|
|
}
|