16 lines
269 B
TypeScript
Executable file
16 lines
269 B
TypeScript
Executable file
import React from 'react'
|
|
import {View,Text} from 'react-native';
|
|
|
|
interface Props {}
|
|
|
|
function RolesDropdown(props: Props) {
|
|
const {} = props
|
|
|
|
return (
|
|
<View>
|
|
<Text>RolesDropdown</Text>
|
|
</View>
|
|
)
|
|
}
|
|
|
|
export default RolesDropdown
|