A simple react component that prints Hello, {username}!
npm i @amitdabade/react-hello --save
import React from 'react';
import ReactDOM from 'react-dom';
import { Hello } from "@amitdabade/react-hello";
function App() {
return (
<div>
<Hello name="Amit" />
</div>
)
}
ReactDOM.render(<App />, document.getElementById('root'));
name : string (Default: "World")
This project is licensed under the terms of the MIT license.