You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Prowlarr/frontend/src/Components/Page/LoadingPage.js

16 lines
369 B

import React from 'react';
import LoadingIndicator from 'Components/Loading/LoadingIndicator';
import LoadingMessage from 'Components/Loading/LoadingMessage';
import styles from './LoadingPage.css';
function LoadingPage() {
return (
<div className={styles.page}>
<LoadingMessage />
<LoadingIndicator />
</div>
);
}
export default LoadingPage;