You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/src/components/loader/index.tsx

14 lines
233 B

import React from 'react';
import logo from './loader-pulse-2.gif';
import './style.css';
const Loader = () => {
return (
<div className="loader bg-primary">
<img src={logo} alt="Loading..." />
</div>);
};
export default Loader;