updated package and information guide and add step for hook

This commit is contained in:
2020-10-09 18:08:22 +07:00
parent 3ec76dcb62
commit 3d54da4f0e
3 changed files with 29 additions and 8 deletions

View File

@@ -1,12 +1,16 @@
import React from 'react';
import ReactDOM from 'react-dom';
// import the countdown hook here
import { useCountdown } from 'cubetiq-react-use-countdown';
const App = () => {
const { timeleft, start } = useCountdown();
const { timeleft, start } = useCountdown({
step: 1000,
});
return (
<div>
<button onClick={() => start(10000)}> Start Countdown </button>
<button onClick={() => start(10000)}>Start Countdown</button>
<h1>Time left: {timeleft}</h1>
</div>
);