feat: updates

This commit is contained in:
qier222 2022-06-09 20:16:05 +08:00
parent d4d8dd817b
commit 4c90db789b
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
14 changed files with 144 additions and 82 deletions

View file

@ -1,10 +1,10 @@
import { createBreakpoint } from 'react-use'
const useBreakpoint = createBreakpoint({
sm: 767,
md: 1023,
lg: 1279,
xl: 1535,
sm: 640,
md: 768,
lg: 1024,
xl: 1280,
'2xl': 1536,
}) as () => 'sm' | 'md' | 'lg' | 'xl' | '2xl'