File size: 212 Bytes
0bfe2e3
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
export const PAGE_TRANSITION = {
  initial: { opacity: 0, y: 60 },
  animate: { opacity: 1, y: 0 },
  exit: { opacity: 0, y: 60 },
  transition: {
    type: 'spring',
    damping: 20,
    stiffness: 100,
  },
};