5 lines
90 B
JavaScript
5 lines
90 B
JavaScript
|
function Component(props) {
|
||
|
const x = {};
|
||
|
const y = x |> String(%);
|
||
|
return [x, y];
|
||
|
}
|