@rickbrown/use-star-wars-quote
v1.0.1
Published
a custom React hook the provides a random quote from the star wars films.
Downloads
2
Readme
@rickbrown/use-star-wars-quote
a custom React hook the provides a random quote from the star wars films.
Install
yarn add @rickbrown/use-star-wars-quote
Usage
import React from 'react';
import { useStarWarsQuote } from '@rickbrown/use-star-wars-quote';
const App = () => {
const { quote, loading } = useStarWarsQuote();
return <div>{loading ? <p>loading..</p> : <p>{quote}</p>}</div>;
};
export default App;
License
MIT © RickBr0wn
This hook is created using create-react-hook.