diff --git a/src/examples/how-to-toggle-product-details/ToggleProductDetails.tsx b/src/examples/how-to-toggle-product-details/ToggleProductDetails.tsx new file mode 100644 index 0000000..d577f02 --- /dev/null +++ b/src/examples/how-to-toggle-product-details/ToggleProductDetails.tsx @@ -0,0 +1,30 @@ +import { useToggle } from '../../hooks/ts/useToggle'; + +export const ToggleProductDetails = () => { + const { current: showDetails, handleToggle: toggleDetails } = + useToggle(false); + + return ( + <> +

SmartWatch Pro X

+

+ The SmartWatch Pro X is the ultimate smartwatch for those looking to + combine style, technology, and performance in one device. With a + high-resolution AMOLED display, you'll enjoy vibrant colors and sharp + details, even under direct sunlight. +

+ {showDetails && ( +

+ Designed for everyday use, the Pro X offers advanced health tracking, + continuous heart rate monitoring, and the option to measure blood + oxygen levels, making it the perfect companion for any physical + activity. Plus, its GPS feature lets you track your routes without + needing to carry your phone. +

+ )} + + + ); +};