12 lines
238 B
TypeScript
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>
|
|
)
|
|
}
|