0byt3m1n1
Path:
C:
/
Program Files
/
R
/
R-4.2.2
/
library
/
reactR
/
templates
/
[
Home
]
File: input_js.txt
import { reactShinyInput } from 'reactR'; const TextInput = ({ configuration, value, setValue }) => { return <input type='text' value={value} onChange={e => setValue(e.target.value)}/>; }; reactShinyInput('.${name}', '${package}.${name}', TextInput);