react-use-webp-support-check
v1.0.21
Published
React Hook to determine if WebP is supported in the current environment
Downloads
1,243
Readme
react-use-webp-support-check
React Hook to determine if WebP is supported in the current environment
Installation
npm install react-use-webp-support-check
Usage
import React from "react";
import { useWebPSupportCheck } from "react-use-webp-support-check";
export default () => {
const supportsWebP = useWebPSupportCheck();
return (
<div>
{supportsWebP ? (
<span>WebP is supported!</span>
) : (
<span>WebP is not supported</span>
)}
</div>
);
};
License
Copyright 2019 Kepler Sticka-Jones. Licensed MIT.