Your IP : 216.73.216.84


Current Path : /home/helpink/www/components/com_jbusinessdirectory/assets/react/src/site/utils/
Upload File :
Current File : /home/helpink/www/components/com_jbusinessdirectory/assets/react/src/site/utils/loading.jsx

class Loading extends React.Component {
    constructor(props) {
        super(props);
    }

    render() {
        const loaderUrl = jbdUtils.getProperty('assetsUrl')+'images/loading-search.gif';

        return (
            <div className="search-loading">
                <img src={loaderUrl} alt="loading..." />
            </div>
        )
    }
}