freshyo/packages/ui/src/roles-dropdown.tsx
2026-01-24 00:13:15 +05:30

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