5 lines
135 B
JavaScript
5 lines
135 B
JavaScript
|
function Component(props) {
|
||
|
const maybeMutable = new MaybeMutable();
|
||
|
let x = props;
|
||
|
return [x, maybeMutable |> maybeMutate(%)];
|
||
|
}
|