CoastalCommitsPastes/client/app/(posts)/post/[id]/loading.tsx
2022-12-04 01:31:51 -08:00

14 lines
342 B
TypeScript

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>
</>
)
}