react-metamorph
v1.0.0
Published
React component to help save work filling meta tags
Downloads
9
Readme
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" />
}
}