Look at the history of a file, in jj:
jj log <path> # commits that touched the file
jj log -p <path> # same, with diffs
jj file annotate <path> # blame-style, line-by-line
And look at the diff at a single revision of a single file:
jj diff -r <rev> <path>