JSTQL-JS-Transform/output_testing/1072conflicting-dollar-sign-variable.js

10 lines
No EOL
226 B
JavaScript

import { identity } from "shared-runtime";
function Component(props) {
const $ = "jQuery" |> identity(%);
const t0 = [$] |> identity(%);
return t0;
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [{}]
};