mirror of
https://github.com/zoriya/react-native-web.git
synced 2025-12-18 04:25:29 +00:00
15 lines
321 B
JavaScript
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;
|