A simple React component that displays a greeting message.
npm install @your-npm-username/react-hello-world-component
import React from 'react';
import { HelloWorld } from '@your-npm-username/react-hello-world-component';
function App() {
return (
<div className="app">
<HelloWorld name="World" />
</div>
);
}
export default App;
Prop | Type | Description |
---|---|---|
name | string | The name to display in the greeting |
- Clone the repository
- Install dependencies:
npm install
- Build the package:
npm run build
MIT