import React, { useState } from "react"; import usePrevious from "../index"; import { Button, Counter, Flex } from "../../../components"; import styles from "./usePrevious.stories.module.scss"; export default { title: "Hooks/usePrevious" }; export const Overview = { render: () => { const [count, setCount] = useState(1); const prevCount = usePrevious(count); const incrementButtonOnClick = () => { setCount(prevValue => prevValue + 1); }; return (
Current
Previous
); }, name: "Overview" };