Files
2026-08-27 21:09:14 +00:00

13 lines
218 B
JavaScript

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