dchan3 / react-metamorph

React component to help save work filling meta tags

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

react-metamorph

Introduction

This package aims to save time dynamically rendering metatags that seem redundant, such as those by Open Graph and Twitter.

Installation

npm i react-metamorph -S

Usage

import React, { Component } from 'react';
import { Metamorph } from 'react-metamorph';

class MyPage extends Component {
  render() {
    return <Metamorph title="Hello World!"
      description="Welcome to my page!"
      keywords=["My page", 'Hello World']
      image="hello.jpg" />
  }
}

About

React component to help save work filling meta tags


Languages

Language:JavaScript 100.0%