An open API service indexing awesome lists of open source software.

https://github.com/timmikeladze/meteor-react-helmet

react-helmet (meteor package): A document head manager for React
https://github.com/timmikeladze/meteor-react-helmet

Last synced: over 1 year ago
JSON representation

react-helmet (meteor package): A document head manager for React

Awesome Lists containing this project

README

          

# Install
`meteor add nfl:react-helmet`

This reusable React component will manage all of your changes to the document head with support for document title, meta, link, script, and base tags. For full documentation visit the [react-helmet](https://github.com/nfl/react-helmet) repo.

**Integrated with reactrouter:react-router-ssr for server-rendering SEO**

## Examples
```javascript
Application = React.createClass({
render() {
return (



...

);
}
});
```

```javascript
Application = React.createClass({
render() {
return (


console.log(newState)}
/>
...

);
}
};
```