This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1import React from 'react'; 2import './Loading.css'; 3 4const Loading = ({ message = 'Loading...' }) => { 5 return ( 6 <div className="loading-container"> 7 <div className="loading-spinner"></div> 8 <p className="loading-message">{message}</p> 9 </div> 10 ); 11}; 12 13export default Loading;