Skip to content

Commit

Permalink
Add meta tags to generator
Browse files Browse the repository at this point in the history
  • Loading branch information
doug-wade committed May 31, 2016
1 parent 3ec320f commit c3cb9d1
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,14 @@ export default class SimplePage {
getElements() {
return <HelloWorld/>;
}

getMetaTags() {
return [
{charset: 'utf8'},
{'http-equiv': 'x-ua-compatible', content: 'ie=edge'},
{name: 'viewport', content: 'width=device-width, initial-scale=1'},
{name: 'description', content: 'hello world, powered by React Server'},
{name: 'generator', content: 'React Server'}
];
}
}

0 comments on commit c3cb9d1

Please sign in to comment.