Files
react-native-web/docs/storybook/1-components/Image/examples/PropDefaultSource.js
2017-09-10 10:35:07 -07:00

19 lines
361 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}
source={sources.largeAlt}
style={helpers.styles.base}
/>
);
export default ImageDefaultSourceExample;