Files
bun-src/test/bundler/transpiler/react-compiler-fixtures/rest-param-with-identifier.js
T
2026-08-27 21:09:14 +00:00

9 lines
147 B
JavaScript

function Component(foo, ...bar) {
return [foo, bar];
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: ['foo', 'bar', 'baz'],
};