mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-01 12:18:35 -05:00
13 lines
222 B
TypeScript
13 lines
222 B
TypeScript
import React from 'react';
|
|
import LoadingSpinner from '../../../components/Common/LoadingSpinner';
|
|
|
|
const PlexLoading = () => {
|
|
return (
|
|
<div>
|
|
<LoadingSpinner />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PlexLoading;
|