1.0.3 • Published 4 years ago
john-package v1.0.3
jonh-package 📦
🎯 Install
npm i -s jonh-package
🧬 Usage
After install the package;
Import the package and use it like the example below 👇
Go to your console of your browser and check the message
import React from 'react';
import logo from './logo.svg';
import './App.css';
import x from 'john-package';
x.greetings();
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
export default App;