Package Exports
- react-is-mounted-hook
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-is-mounted-hook) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-is-mounted-hook
React hook to check if the component is still mounted
Install
// with npm
npm install react-is-mounted-hook
// with yarn
yarn add react-is-mounted-hook
How to use
import React, { useState, useEffect } from 'react';
import useIsMounted from 'react-is-mounted-hook';
import axios from 'axios';
import Loading from './loading';
import Result from './result';
const FetchComponent = () => {
const isMounted = useIsMounted();
const [data, setData] = useState(null);
useEffect(() => {
const fetchData = async () => {
const result = await axios(
'http://hn.algolia.com/api/v1/search?query=redux'
);
if (isMounted()) {
setData(result.data);
}
};
fetchData();
}, [isMounted]);
return data ? <Result data={data} /> : <Loading />;
};
export default FetchComponent;