This commit is contained in:
Hailey
2024-01-11 02:01:20 -08:00
parent c6d2e54923
commit 648552eafb
15 changed files with 132 additions and 78 deletions
@@ -0,0 +1,11 @@
import * as React from 'react'
import {ExpoProTextViewProps} from './ExpoSelectableText.types'
export default function ExpoProTextView(props: ExpoProTextViewProps) {
return (
<div>
<span>{props.name}</span>
</div>
)
}