mirror of
				https://github.com/theoludwig/theoludwig.git
				synced 2025-10-14 20:23:25 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			438 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			438 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import type { Meta, StoryObj } from "@storybook/react"
 | |
| 
 | |
| import { BLOG_POST_MOCK } from "../BlogPost"
 | |
| import { BlogPostUI as BlogPostUIComponent } from "../BlogPostUI"
 | |
| 
 | |
| const meta = {
 | |
|   title: "Feature/Blog/BlogPostUI",
 | |
|   component: BlogPostUIComponent,
 | |
| } satisfies Meta<typeof BlogPostUIComponent>
 | |
| 
 | |
| export default meta
 | |
| 
 | |
| type Story = StoryObj<typeof meta>
 | |
| 
 | |
| export const BlogPostUI: Story = {
 | |
|   args: {
 | |
|     blogPost: BLOG_POST_MOCK,
 | |
|   },
 | |
| }
 |