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