rsnext/test/integration/react-streaming/app/components/shared-exports.js
Jiachi Liu 5e2ad29309
Migrate rsc tests to app dir tests (#38158)
### Tests 
* keep node & edge for streaming
* separate rsc tests from streaming tests
* move rsc tests to app-dir, disable the broken ones for now
2022-06-29 23:12:57 +00: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 }