--- name: InputText menu: Components route: components/InputText --- import { useState } from 'react'; import { Playground, Props } from 'docz'; import InputText from './'; # Input Text ## Import ```javascript import { InputText } from '@ohif/ui'; ``` ## Basic usage {() => { const [text, setText] = useState(''); return (
{setText(value)}} />
) }}
## Properties