blob: 74b0e0534408dbf54035eeb3714a2bd12c7cc041 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import styles from "./manga.module.css";
export default function Loading() {
return (
<div className={styles.LoadingContainer}>
<p>Please wait while we are loading your content....</p>
</div>
);
}
|