mirror of
https://github.com/haiwen/seahub.git
synced 2025-07-15 16:04:01 +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; |