mirror of
https://github.com/d0zingcat/nextjs-notion-starter-kit.git
synced 2026-05-13 15:09:47 +00:00
11 lines
203 B
TypeScript
11 lines
203 B
TypeScript
import { LoadingIcon } from './LoadingIcon'
|
|
import styles from './styles.module.css'
|
|
|
|
export function Loading() {
|
|
return (
|
|
<div className={styles.container}>
|
|
<LoadingIcon />
|
|
</div>
|
|
)
|
|
}
|