9 lines
No EOL
108 B
JavaScript
9 lines
No EOL
108 B
JavaScript
function component(a) {
|
|
let z = {
|
|
a
|
|
};
|
|
let x = () => {
|
|
z |> console.log(%);
|
|
};
|
|
return x;
|
|
} |