mirror of
https://github.com/zhigang1992/react-native-segmented-control-tab.git
synced 2026-01-12 17:42:48 +08:00
11 lines
155 B
JavaScript
11 lines
155 B
JavaScript
/* @flow */
|
|
|
|
import React from 'react'
|
|
import SegmentedView from './SegmentedView'
|
|
|
|
export default function App() {
|
|
return (
|
|
<SegmentedView />
|
|
)
|
|
}
|