diff --git a/docs/storybook/1-components/Image/ImageBackgroundScreen.js b/docs/storybook/1-components/Image/ImageBackgroundScreen.js new file mode 100644 index 00000000..e7c83779 --- /dev/null +++ b/docs/storybook/1-components/Image/ImageBackgroundScreen.js @@ -0,0 +1,41 @@ +/* eslint-disable react/jsx-sort-props */ + +/** + * @flow + */ + +import React from 'react'; +import PropChildren from './examples/PropChildren'; +import UIExplorer, { + AppText, + Code, + Description, + DocItem, + Section, + storiesOf +} from '../../ui-explorer'; + +const ImageBackgroundScreen = () => ( + + + A image component with support for child content. + + +
+ + + + }} + /> + + +
+
+); + +storiesOf('Components', module).add('ImageBackground', ImageBackgroundScreen);