File size: 937 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import React, { useState } from 'react';
// import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
// import { faAngleUp } from '@fortawesome/free-solid-svg-icons'
import { useEffect } from 'react';
import './ScrollTop.css'

export const scrollUP = () => {
    window['scrollTo']({top: 0, behavior: 'smooth'})
}
const ScrollTop = () => {
    const [isTrue, setIsTrue] = useState(false)
    useEffect(() => {
        window.addEventListener("scroll", () => {
            if (window.scrollY > 50) {
                setIsTrue(true)
            } else {
                setIsTrue(false)
            }
        })
    }, [isTrue])
    return (
        <div>
            {
                isTrue && <button onClick={scrollUP}className="scrollBtn">
                    {/* <FontAwesomeIcon icon={faAngleUp}/> */}
                    Button
                    </button>
            }
        </div>
    );
};

export default ScrollTop;