Files
bsky-social-app/modules/expo-selectable-text/src/ExpoSelectableText.web.tsx
T
Hailey 648552eafb wip
2024-01-11 02:01:20 -08:00

12 lines
238 B
TypeScript

import * as React from 'react'
import {ExpoProTextViewProps} from './ExpoSelectableText.types'
export default function ExpoProTextView(props: ExpoProTextViewProps) {
return (
<div>
<span>{props.name}</span>
</div>
)
}