11 lines
193 B
JavaScript
11 lines
193 B
JavaScript
import {identity} from 'shared-runtime';
|
|
|
|
function Component(x = identity([() => {}, true, 42, 'hello'])) {
|
|
return x;
|
|
}
|
|
|
|
export const FIXTURE_ENTRYPOINT = {
|
|
fn: Component,
|
|
params: [],
|
|
};
|