9 lines
120 B
TypeScript
9 lines
120 B
TypeScript
import React from 'react'
|
|
|
|
const TextInput = () => {
|
|
return (
|
|
<div>TextInput</div>
|
|
)
|
|
}
|
|
|
|
export default TextInput |