mirror of https://github.com/MaxLeiter/Drift
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			15 lines
		
	
	
		
			342 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			15 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>
 | 
						|
		</>
 | 
						|
	)
 | 
						|
}
 |