CoastalCommitsPastes/client/app/(posts)/post/[id]/loading.tsx

15 lines
342 B
TypeScript
Raw Normal View History

2022-12-04 04:31:51 -05:00
import { PostButtons } from "./components/header/post-buttons"
import { PostTitle } from "./components/header/title"
import styles from "./styles.module.css"
export default function PostLoading() {
return (
<>
<div className={styles.header}>
<PostButtons loading title="" />
<PostTitle title="" loading />
</div>
</>
)
}