neptune-web
feature(#72): improve the select item functionality and UI/UX
04e85f3
import React from "react";
import './index.css'
const BouncingDotsLoader = () => {
return (
<>
<div className="bouncing-loader">
<div></div>
<div></div>
<div></div>
</div>
</>
);
};
export default BouncingDotsLoader;