mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:05:09 +00:00
9 lines
99 B
JavaScript
9 lines
99 B
JavaScript
export function Component(props) {
|
|
return (
|
|
<div>
|
|
{}
|
|
{props.a}
|
|
</div>
|
|
);
|
|
}
|