aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-shared/src/ts/utils.ts
blob: 822b674961f574daca46611db8e9ae3ea0473fcc (plain) (blame)
1
2
3
4
5
export const utils = {
    setUrlHash(anchorId: string) {
        window.location.hash = anchorId;
    },
};