import React from 'react' import { storiesOf } from '@storybook/react' storiesOf('Markdown', module) .add('code', () => (

This is inline code block. This code block has a <br>
in it
. When a code block has a long sentence in it, it should wrap the page to a new line. Some people like to see the world burn and put reallylongunbrokenstringsreallylongunbrokenstringsreallylongunbrokenstringsreallylongunbrokenstringsreallylongunbrokenstrings in the code blocks.

)) .add('pre', () => (
        Really long pre blocks should scroll horizontally when the words are longer than the parent container
      
))