rsnext/test/integration/react-streaming-and-server-components/app/components/shared-exports.js
Jiachi Liu 7083dcfe44
Generate static html for bots (#35004)
* Generate static html for bots

* fix lint

* refactor error handling against comment

* fix streaming on edge for bots

* inline doResolve
2022-03-03 23:39:26 -08:00

10 lines
160 B
JavaScript

const a = 'a'
const b = 'b'
const _c = 'c'
const _d = 'd'
const _e = 'e'
const _eArr = [_e]
export const c = _c
export { a, b }
export { _d as d, _eArr as e }