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
- Host: GitHub
- URL: https://github.com/timmikeladze/meteor-react-helmet
- Owner: TimMikeladze
- Created: 2015-12-21T06:27:42.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-21T06:41:13.000Z (over 10 years ago)
- Last Synced: 2025-03-30T20:51:21.921Z (over 1 year ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)}
/>
...
);
}
};
```