@leoalipazaga/use-starwars-quote
v2.0.0
Published
a custom react hook
Downloads
4
Readme
@leoalipazaga/use-starwars-quote
a custom react hook
Install
npm install --save @leoalipazaga/use-starwars-quote
Usage
import React from "react";
import { useStarWarsQuote } from "@leoalipazaga/use-starwars-quote";
const App = () => {
const { loading, quote } = useStarWarsQuote();
return loading ? <p>Loading...</p> : <div>{quote}</div>;
};
export default App;
License
MIT © n
This hook is created using create-react-hook.