blob: 00ce39c015d2b51318e537f8364d0bd9532c6803 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import styles from "./styles/loading.module.css";
const Loading = async () => {
return (
<main className={styles.LoadingContainer}>
<strong>Loading...</strong>
</main>
);
};
export default Loading;
|