mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-04-29 12:11:09 +00:00
fix: update test cases
This commit is contained in:
parent
54bb39f6ab
commit
371b408d6d
2 changed files with 4 additions and 3 deletions
|
|
@ -19,7 +19,8 @@
|
|||
<script>
|
||||
const withKey = (props, key) =>
|
||||
key == null ? props : Object.assign({}, props, { key });
|
||||
const jsx = (type, props, key) => React.createElement(type, withKey(props, key));
|
||||
const jsx = (type, props, key) =>
|
||||
React.createElement(type, withKey(props, key));
|
||||
const jsxRuntime = {
|
||||
Fragment: React.Fragment,
|
||||
jsx,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue