Files
react/compiler/crates/react_hermes_parser/tests/fixtures/object-expression-string-literal-key.js
2024-04-02 16:49:31 -07:00

5 lines
78 B
JavaScript

function Component(props) {
const x = { ["foo"]: props.foo };
return x;
}