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