File size: 214 Bytes
1b72d7e
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
import AOS from 'aos'
import { isBrowser } from 'react-notion-x'

/**
 * 加载滚动动画
 * https://michalsnik.github.io/aos/
 */
export default function AOSAnimation() {
  if (isBrowser) {
    AOS.init()
  }
}