Files
react-native-web/docs/storybook/1-components/Image/examples/PropDefaultSource.js
2017-06-29 16:15:51 -07:00

18 lines
357 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;