localize
import { localize } from "@olenbetong/appframe-core";
import { usePaging } from "@olenbetong/appframe-react";
function CurrentPageText() {
let { page, pageCount } = usePaging(dsMyDataObject);
return localize`You are on page ${page} of ${pageCount}.`;
}Last updated
Was this helpful?