Files
react-native-web/docs/storybook/1-components/Image/examples/PropDefaultSource.js
2017-10-19 12:42:45 -07:00

15 lines
321 B
JavaScript

/**
* @flow
*/
import * as helpers from '../helpers';
import sources from '../sources';
import React from 'react';
import { Image } from 'react-native';
const ImageDefaultSourceExample = () => (
<Image defaultSource={sources.placeholder} style={helpers.styles.base} />
);
export default ImageDefaultSourceExample;