README
@afbroman/react-use-sw-quote
custom react hook for getting a random Star Wars quote
Install
npm install --save @afbroman/react-use-sw-quote
Usage
import React, { Component } from 'react'
import { useStarWarsQuote } from '@afbroman/react-use-sw-quote'
const Example = () => {
const example = useStarWarsQuote()
return (
<div>{example}</div>
)
}
License
MIT © afbroman
This hook is created using create-react-hook.