mirror of
https://github.com/zoriya/react-native-web.git
synced 2026-06-04 02:56:42 +00:00
17 lines
414 B
JavaScript
17 lines
414 B
JavaScript
import {getOtherProps, omitProps, pickProps} from './lib/filterObjectProps';
|
|
import StylePropTypes from './lib/StylePropTypes';
|
|
import Component from './lib/components/Component';
|
|
import Image from './lib/components/Image';
|
|
import Text from './lib/components/Text';
|
|
import View from './lib/components/View';
|
|
|
|
export default {
|
|
getOtherProps,
|
|
pickProps,
|
|
StylePropTypes,
|
|
Component,
|
|
Image,
|
|
Text,
|
|
View
|
|
};
|