mirror of
https://github.com/zhigang1992/react-native-segmented-control-tab.git
synced 2026-01-12 22:50:51 +08:00
17 lines
298 B
JavaScript
17 lines
298 B
JavaScript
/**
|
|
* Sample React Native App
|
|
* https://github.com/facebook/react-native
|
|
* @flow
|
|
*/
|
|
|
|
import React from 'react'
|
|
import {
|
|
AppRegistry,
|
|
} from 'react-native'
|
|
|
|
import ExampleMain from './ExampleMain'
|
|
|
|
const Example = () => <ExampleMain />
|
|
|
|
AppRegistry.registerComponent('Example', () => Example)
|