1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Merge pull request #7 from zeit/fix/examples

Fixed examples.
This commit is contained in:
Naoyuki Kanezawa 2016-10-15 20:00:22 +09:00 committed by GitHub
commit ce280e8cf1

View file

@ -30,9 +30,9 @@ Every `import` you declare gets bundled and served with each page
```jsx ```jsx
import React from 'react' import React from 'react'
import cowsay from 'cowsay' import cowsay from 'cowsay-browser'
export default () => ( export default () => (
<pre>{ cowsay('hi there!') }</pre> <pre>{ cowsay({ text: 'hi there!' }) }</pre>
) )
``` ```
@ -46,11 +46,11 @@ We use [Aphrodite](https://github.com/Khan/aphrodite) to provide a great built-i
import React from 'react' import React from 'react'
import { css, StyleSheet } from 'next/css' import { css, StyleSheet } from 'next/css'
export default () => { export default () => (
<div className={ css(styles.main) }> <div className={ css(styles.main) }>
Hello world Hello world
</div> </div>
}) )
const styles = StyleSheet.create({ const styles = StyleSheet.create({
main: { main: {
@ -70,11 +70,13 @@ We expose a built-in component for appending elements to the `<head>` of the pag
import React from 'react' import React from 'react'
import Head from 'next/head' import Head from 'next/head'
export default () => ( export default () => (
<Head> <div>
<title>My page title</title> <Head>
<meta name="viewport" content="initial-scale=1.0, width=device-width" /> <title>My page title</title>
</Head> <meta name="viewport" content="initial-scale=1.0, width=device-width" />
<p>Hello world!</p> </Head>
<p>Hello world!</p>
</div>
) )
``` ```