class ShoppingList extends React.Component {
render() {
return (
<div classname="shopping-list">
<h1>Shopping List for {this.props.name}</h1>
<ul>
<li>Instagram</li>
<li>WhatsApp</li>
<li>Oculus</li>
</ul>
</div>
)
}
}
A React Component
React | React Native |
---|---|
<div> | <View> |
<span> | <Text> |
<li>,<ul> | <ListView> |
<img> | <Image> |
<DataPicker
data={this.state.date}
mode="date"
timeZoneOffsetInMinutes={this.state.timeZoneOffsetInHours * 60}
/>
import React from "react";
import { View, Text } from "react-native";
const ViewBoxesWithColorAndText = () => {
return (
<view style="{{" flexdirection:="" "row",="" height:="" 100,="" padding:="" 20="" }}="">
<view style="{{" backgroundcolor:="" "blue",="" flex:="" 0.3="" }}="">
<view style="{{" backgroundcolor:="" "red",="" flex:="" 0.5="" }}="">
<text>Hello World!</text>
</view>
);
};
export default ViewBoxesWithColorAndText;
</view></view>
// Define a style...
const HelloMessage = React.createClass({
render: function(){
// Instead of calling createElement, we return markup
return <div>Hello {this.props.name}</div>;
};
});
// We no longer need a creatElement call here
React.render(<HelloMessage name="Bonnie" />, mountNode);
JSX (Underlined)
<div>Hello Bonnie</div>
// Define a style...
const style = {
backgroundColor: 'white',
fontSize: '16px'
};
// ...and then apply it.
const tv = (
<text style="{style}">
A styled Text
</text>);
{ background-color : "white"}
⇓
{ backgroundСolor : 'white'}
export default class Home extends Component {
render() {
return (
<view style="{styles.container}">
<text style="{styles.header}">Basic Header</text>
</view>
)
}
const styles = StyleSheet.create({
container: {
paddingHorizontal: 10,
paddingVertical: 10
},
header: {
fontSize: 12,
fontFamily: 'Cochin'
}
})