feat: use react-router

This commit is contained in:
Steven
2022-09-19 21:53:27 +08:00
parent 4608894e56
commit 307483e499
12 changed files with 155 additions and 149 deletions

View File

@ -1,4 +1,8 @@
import { assign } from "lodash-es";
import { assign, isNull, isUndefined } from "lodash-es";
export const isNullorUndefined = (value: any) => {
return isNull(value) || isUndefined(value);
};
export function getNowTimeStamp(): number {
return Date.now();