Skip to content

Commit

Permalink
fix: test checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
iChengbo committed Aug 17, 2021
1 parent 3b99df8 commit 97dcf2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pages/components/pages/checkbox/checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,10 @@ export default class PageCheckbox extends React.Component {
</View>
<View className='example-body simple-box'>
<Checkbox value='选中' checked>
选中
{/* 选中 */}
</Checkbox>
<Checkbox style='margin-left: 20px' value='未选中'>
未选中
{/* 未选中 */}
</Checkbox>
</View>
</View>
Expand All @@ -94,7 +94,7 @@ export default class PageCheckbox extends React.Component {
value={item.value}
checked={item.checked}
>
{item.text}
{/* {item.text} */}
</Checkbox>
</Label>
)
Expand Down

0 comments on commit 97dcf2b

Please sign in to comment.