Files
react/compiler/crates/react_hermes_parser/tests/fixtures/function-param-assignment-pattern.js
2024-04-02 16:49:31 -07:00

4 lines
65 B
JavaScript

function Component(x = "default", y = [{}]) {
return [x, y];
}