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