重构xuchang-screen,从umi->cra, 计划引入redux
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

8 lines
131 B

  1. function rand(min: number, max: number) {
  2. return Math.floor(Math.random() * (max - min + 1)) + min;
  3. }
  4. export default {
  5. rand,
  6. };