diff options
author | 2021-10-06 19:26:43 -0700 | |
---|---|---|
committer | 2021-10-06 19:26:43 -0700 | |
commit | 1d0f44271805e784ca995437b98755444045e01a (patch) | |
tree | aa6107880337701ccd53678f0b18ff0427f5dab9 /integration/snapshots/react-context-value-func.debug.tsx | |
parent | 1e8babe1852361a2ace6c01dc699c08115462eba (diff) | |
download | bun-1d0f44271805e784ca995437b98755444045e01a.tar.gz bun-1d0f44271805e784ca995437b98755444045e01a.tar.zst bun-1d0f44271805e784ca995437b98755444045e01a.zip |
:camera:jarred/read-tsconfig-jsx
Diffstat (limited to 'integration/snapshots/react-context-value-func.debug.tsx')
-rw-r--r-- | integration/snapshots/react-context-value-func.debug.tsx | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/integration/snapshots/react-context-value-func.debug.tsx b/integration/snapshots/react-context-value-func.debug.tsx new file mode 100644 index 000000000..5d151afba --- /dev/null +++ b/integration/snapshots/react-context-value-func.debug.tsx @@ -0,0 +1,35 @@ +import { +__require as require +} from "http://localhost:8080/__runtime.js"; +import * as JSX from "http://localhost:8080/node_modules/react/jsx-dev-runtime.js"; +var jsx = require(JSX).jsxDEV; + +import * as $bbcd215f from "http://localhost:8080/node_modules/react/index.js"; +var { default: React} = require($bbcd215f); +const Context = React.createContext({}); + +const ContextProvider = ({ children }) => { + const [cb, setCB] = React.useState(function() { + }); + const foo = true; + return jsx(Context.Provider, { + value: cb, + children: children(foo) + }, undefined, false, undefined, this); +}; +const ContextValue = ({}) => jsx(Context.Consumer, { + children: (foo) => { + if (foo) + return jsx("div", { + children: "Worked!" + }, undefined, false, undefined, this); + throw `Value "${foo}"" should be true`; + } +}, undefined, false, undefined, this); +const TestComponent = () => jsx(ContextProvider, { + children: jsx(ContextValue, {}, undefined, false, undefined, this) +}, undefined, false, undefined, this); +export function test() { + const foo = jsx(TestComponent, {}, undefined, false, undefined, this); + return testDone(import.meta.url); +} |