8 lines
92 B
JavaScript
8 lines
92 B
JavaScript
|
function Component(c) {
|
||
|
let x = {
|
||
|
c
|
||
|
};
|
||
|
x |> mutate(%);
|
||
|
let a = x;
|
||
|
let b = a;
|
||
|
}
|