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