mirror of
https://github.com/zhigang1992/react-native-web.git
synced 2026-04-01 09:27:14 +08:00
28 lines
530 B
JavaScript
28 lines
530 B
JavaScript
import React from 'react'
|
|
|
|
import StyleSheet from './modules/StyleSheet'
|
|
|
|
// components
|
|
import Image from './components/Image'
|
|
import ListView from './components/ListView'
|
|
import ScrollView from './components/ScrollView'
|
|
import Text from './components/Text'
|
|
import TextInput from './components/TextInput'
|
|
import Touchable from './components/Touchable'
|
|
import View from './components/View'
|
|
|
|
export default React
|
|
|
|
export {
|
|
StyleSheet,
|
|
|
|
// components
|
|
Image,
|
|
ListView,
|
|
ScrollView,
|
|
Text,
|
|
TextInput,
|
|
Touchable,
|
|
View
|
|
}
|