import React, { Component } from 'react';
import { Text } from 'react-native';
class MessageView extends Component {
render() {
return (
{this.props.message}
);
}
}
Note: {this.props.message} is surrounded by braces to embed it into JSX.
You could then utilise your reusable component by importing and adding the following to another component:
<MessageView message="Hello World! />
No comments:
Post a Comment