@chae_hook/use-title
v1.0.2
Published
React Hook to update your document's title
Readme
@chae_hook/use-title
React Hook to update your document's title.
Installation
yarn
yarn i @chae_hook/use-titlenpm
npm i @chae_hook/use-title**Usage
import React from "react";
import useTitle from "@chae_hook/use-title";
funciton App() {
useTitle("Welcome");
return <h1> Welcome</h1>
}