A simple and reusable React component that displays a greeting message. Perfect for use in various React applications where you need a quick way to show greetings or messages to users.
You can install the package via npm:
npm install @mkinfopoint/react-greeting-component
## Usage
To use the `MKGreetingComponent`, simply import it into your React component and pass the `text` prop to customize the greeting message.
### Example
```jsx
import React from 'react';
import MKGreetingComponent from '@mkinfopoint/react-greeting-component';
const App = () => {
return (
<div>
<MKGreetingComponent text="Welcome to my app!" />
</div>
);
};
export default App;