@ej-hooks/use-title
v1.0.1
Published
Collection of React Hooks ready to install with NPM
Maintainers
Readme
@ej-hooks/use-title
React Hook to update your document's title.
Installation
yarn
yarn add @ej-hooks/use-title
npm
npm i @ej-hooks/use-title
Usage
import React from 'react';
import useTitle from '@ej-hooks/use-title';
function App() {
useTitle('Welcome');
return <h1>Welcome</h1>;
}Arguments
| Argument | Type | Description | Required | | -------- | ------ | ------------------------------------------ | -------- | | title | string | The title you want to use on your document | yes |
