-
Notifications
You must be signed in to change notification settings - Fork 71
Open
Description
复现代码:
import { createElement, useState } from 'rax';
import View from 'rax-view';
import TextInput from 'rax-textinput';
import styles from './index.module.css';
export default function Home() {
let [value, setValue] = useState('');
const handleInput = (e) => {
setValue(e.value);
}
return (
<View className={styles.homeContainer}>
请输入文案:
<TextInput
className={styles.input}
value={value}
onInput={handleInput}
/>
{value}
</View>
);
}复现视频:
trim.5A731E43-E818-4F9E-81D5-E70F9AC011CD.MOV
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels