mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-16 16:21:48 +00:00
9 lines
146 B
JavaScript
9 lines
146 B
JavaScript
|
import React from 'react';
|
||
|
|
||
|
function Loading() {
|
||
|
return (
|
||
|
<span className="loading-icon loading-tip"></span>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default Loading;
|