react-no-pay
v1.0.0
Published
Just a fun package for who dont pay for your work :D
Downloads
2
Maintainers
Readme
Usage
To start using the library, install it in your project:
npm install react-no-pay
Add useNotPaid(startDate, deadline)
to your root layout, it will be fade the body in time you say for you, that simple!
import { useNotPaid } from 'react-no-pay';
function App() {
useNotPaid(new Date(), 10);
return <div>...</div>;
}