10 lines
194 B
JavaScript
10 lines
194 B
JavaScript
|
function Component(props) {
|
||
|
const x = {};
|
||
|
const y = x |> Number(%);
|
||
|
return [x, y];
|
||
|
}
|
||
|
export const FIXTURE_ENTRYPOINT = {
|
||
|
fn: Component,
|
||
|
params: ["TodoAdd"],
|
||
|
isComponent: "TodoAdd"
|
||
|
};
|