forked from UKSOURCE/hailearning.edu.vn
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
export default function BackToTop() {
|
|
return (
|
|
<button id="back-top" className="back-to-top show">
|
|
<i className="fa-regular fa-arrow-up"></i>
|
|
</button>
|
|
);
|
|
}
|