mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-04-20 22:21:27 -05:00
7 lines
296 B
TypeScript
7 lines
296 B
TypeScript
import styles from "./Placeholder.module.css";
|
|
|
|
/** Renders a blank placeholder component that can be used while content is loading. Better than returning null because it keeps the footer down where it belongs. */
|
|
export function Placeholder() {
|
|
return <div className={styles.placeholder} />;
|
|
}
|