Fix typo (storyboard -> storybook) (#3603)
This commit is contained in:
		
				
					committed by
					
						
						Eugen Rochko
					
				
			
			
				
	
			
			
			
						parent
						
							30fa5fe1a4
						
					
				
				
					commit
					d81b706f12
				
			@@ -5,14 +5,14 @@ import Button from 'mastodon/components/button';
 | 
			
		||||
 | 
			
		||||
storiesOf('Button', module)
 | 
			
		||||
  .add('default state', () => (
 | 
			
		||||
    <Button text="submit" onClick={action('clicked')} />
 | 
			
		||||
    <Button text='submit' onClick={action('clicked')} />
 | 
			
		||||
  ))
 | 
			
		||||
  .add('secondary', () => (
 | 
			
		||||
    <Button secondary text="submit" onClick={action('clicked')} />
 | 
			
		||||
    <Button secondary text='submit' onClick={action('clicked')} />
 | 
			
		||||
  ))
 | 
			
		||||
  .add('disabled', () => (
 | 
			
		||||
    <Button disabled text="submit" onClick={action('clicked')} />
 | 
			
		||||
    <Button disabled text='submit' onClick={action('clicked')} />
 | 
			
		||||
  ))
 | 
			
		||||
  .add('block', () => (
 | 
			
		||||
    <Button block text="submit" onClick={action('clicked')} />
 | 
			
		||||
    <Button block text='submit' onClick={action('clicked')} />
 | 
			
		||||
  ));
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user