mirror of
https://github.com/Paris-est-Ludique/intranet.git
synced 2025-06-08 08:34:20 +02:00
10 lines
180 B
TypeScript
Executable File
10 lines
180 B
TypeScript
Executable File
import styles from "./styles.module.scss"
|
|
|
|
const Loading = (): JSX.Element => (
|
|
<div className={styles.loading}>
|
|
<p>Loading...</p>
|
|
</div>
|
|
)
|
|
|
|
export default Loading
|