mirror of
https://github.com/facebook/react.git
synced 2026-02-26 07:05:09 +00:00
7 lines
100 B
JavaScript
7 lines
100 B
JavaScript
function Component(props) {
|
|
const a = 1;
|
|
const b = 2;
|
|
const x = { a: a, b: b };
|
|
return x;
|
|
}
|