Skip to content

Commit

Permalink
fix test fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
mmews committed Feb 20, 2024
1 parent 9cabf5d commit b7e5819
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@
export function jsx(type, config, maybeKey) {
return {type: type, config: config, maybeKey: maybeKey};
}

//Mock implementation for jsxs
export function jsxs(type, config, maybeKey) {
return {type: type, config: config, maybeKey: maybeKey};
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@
export function jsx(type, config, maybeKey) {
return {type: type, config: config, maybeKey: maybeKey};
}

//Mock implementation for jsxs
export function jsxs(type, config, maybeKey) {
return {type: type, config: config, maybeKey: maybeKey};
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,8 @@
export function jsx(type, config, maybeKey) {
return {type: type, config: config, maybeKey: maybeKey};
}

//Mock implementation for jsxs
export function jsxs(type, config, maybeKey) {
return {type: type, config: config, maybeKey: maybeKey};
}

0 comments on commit b7e5819

Please sign in to comment.