React/Library

[ React ] react-helmet

Design-loving front-end engineer 2022. 7. 30. 23:08

๐Ÿ”ด  Introduction

โšช  React์—์„œ ์›น์‚ฌ์ดํŠธ <title>์„ ๋™์ ์œผ๋กœ ๋ณ€๊ฒฝํ•  ์ˆ˜ ์žˆ๋„๋ก ํ•ด์ค€๋‹ค.

 

๐ŸŸ   Official

 

GitHub - nfl/react-helmet: A document head manager for React

A document head manager for React. Contribute to nfl/react-helmet development by creating an account on GitHub.

github.com

 

๐ŸŸก  Install

 
npm i react-helmet

 

๐ŸŸข  Usage

 
// [ Usage Component ]
import { Helmet } from "react-helmet";

const Coin = () => {
  return (
    <Helmet>
      <title>{state?.name ? state.name : loading ? "Loading..." : infoData?.name}</title>
    </Helmet>
  );
}