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

13 lines
279 B
TypeScript

// @expectNothingCompiled @compilationMode:"infer"
import {useIdentity, identity} from 'shared-runtime';
function Component(fakeProps: number) {
const x = useIdentity(fakeProps);
return identity(x);
}
export const FIXTURE_ENTRYPOINT = {
fn: Component,
params: [42],
};