mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-16 00:06:11 +00:00
* 01 fix eslint warnings * fix code warnings * fix code warnings * fix code warnings * fix code warnings * fix code warnings
10 lines
147 B
JavaScript
10 lines
147 B
JavaScript
import React from 'react';
|
|
|
|
function Loading() {
|
|
return (
|
|
<span className="loading-icon loading-tip"></span>
|
|
);
|
|
}
|
|
|
|
export default Loading;
|