35 lines
		
	
	
		
			452 B
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			452 B
		
	
	
	
		
			Plaintext
		
	
	
	
import { Meta } from "@storybook/blocks";
 | 
						|
 | 
						|
<Meta title="Hello world" />
 | 
						|
 | 
						|
<div className="sb-container">
 | 
						|
  <div className='sb-section-title'>
 | 
						|
    # Hello world
 | 
						|
 | 
						|
    Hello world
 | 
						|
  </div>
 | 
						|
</div>
 | 
						|
 | 
						|
<style>
 | 
						|
  {`
 | 
						|
  .sb-container {
 | 
						|
    margin-bottom: 48px;
 | 
						|
  }
 | 
						|
 | 
						|
  .sb-section {
 | 
						|
    width: 100%;
 | 
						|
    display: flex;
 | 
						|
    flex-direction: row;
 | 
						|
    gap: 20px;
 | 
						|
  }
 | 
						|
 | 
						|
  img {
 | 
						|
    object-fit: cover;
 | 
						|
  }
 | 
						|
 | 
						|
  .sb-section-title {
 | 
						|
    margin-bottom: 32px;
 | 
						|
  }
 | 
						|
  `}
 | 
						|
</style>
 |