mirror of
https://github.com/zoriya/react-native-web.git
synced 2025-12-18 12:35:12 +00:00
21 lines
398 B
JavaScript
Executable File
21 lines
398 B
JavaScript
Executable File
/**
|
|
* @flow
|
|
*/
|
|
|
|
import React from 'react';
|
|
import styles from './styles';
|
|
import { CheckBox, View } from 'react-native';
|
|
|
|
const CheckBoxValueExample = () => (
|
|
<View style={styles.row}>
|
|
<View style={styles.marginRight}>
|
|
<CheckBox value={false} />
|
|
</View>
|
|
<View style={styles.marginRight}>
|
|
<CheckBox value />
|
|
</View>
|
|
</View>
|
|
);
|
|
|
|
export default CheckBoxValueExample;
|