mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
18 lines
No EOL
401 B
JavaScript
18 lines
No EOL
401 B
JavaScript
import { registerComponent } from 'meteor/vulcan:lib';
|
|
import React from 'react';
|
|
|
|
const Loading = props => {
|
|
return (
|
|
<div className={`spinner ${props.className}`}>
|
|
<div className="bounce1"></div>
|
|
<div className="bounce2"></div>
|
|
<div className="bounce3"></div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
Loading.displayName = 'Loading';
|
|
|
|
registerComponent('Loading', Loading);
|
|
|
|
export default Loading; |