·
When you are working on an application in react.js you often need to update meta tags on page
transitions. React meta tags can be used for this.
Define your meta values.
title: 'Some Meta Title',
description: 'I am a description, and I can create multiple tags',
canonical: 'http://example.com/path/to/page',
meta: {
charset: 'utf-8',
name: {
keywords: 'react,meta,document,html,tags'
}
}
Then place Read more