mirror of
				https://github.com/r-freeman/portfolio.git
				synced 2025-11-04 05:41:11 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			207 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			207 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import {ReactNode} from 'react'
 | 
						|
 | 
						|
export type Article = {
 | 
						|
    slug: string
 | 
						|
    title: string
 | 
						|
    date: string
 | 
						|
    description: string
 | 
						|
}
 | 
						|
 | 
						|
export type Props = {
 | 
						|
    className?: string
 | 
						|
    children?: ReactNode
 | 
						|
} |