/* --- แบบ class component --- */
import React, {Component} from 'react';
import { Image, View, Text,} from 'react-native';
class CustomCard1 extends Component {
render() {
return (
<
view
>
<
text
>hello world</
text
>
<
img
source
=
"{{"
uri:'
https:
=
""
www.thaiall.com
=
""
me
=
""
picme.jpg'}}=""
style
=
"{{width:"
300,=""
height
=
""
:
=
""
250}}="">
</
view
>
);
}
}
export default CustomCard1;
/* --- แบบ function component --- */
import React, {Component} from 'react';
import { View, Text,} from 'react-native';
const CustomCard2 = () => {
return (
<
view
><
text
>hello world</
text
></
view
>
);
}
export default CustomCard2;