swc/crates/swc_ecma_parser/tests/tsc/jsxJsxsCjsTransformKeyProp.tsx
2022-02-04 17:08:38 +09:00

10 lines
251 B
TypeScript

// @jsx: react-jsx,react-jsxdev
// @strict: true
// @module: commonjs
/// <reference path="/.lib/react16.d.ts" />
const props = { answer: 42 }
const a = <div key="foo" {...props}>text</div>;
const b = <div {...props} key="bar">text</div>;
export {};