mirror of
https://github.com/Funkoala14/KnowledgeBase_OOIN.git
synced 2025-06-08 04:38:14 +08:00
12 lines
234 B
React
12 lines
234 B
React
|
import React from 'react';
|
||
|
|
||
|
const Loading = () => {
|
||
|
return (
|
||
|
<div className='spinner-border' role='status'>
|
||
|
<span className='visually-hidden'>Loading...</span>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default Loading;
|