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

[hello-world example] remove unused file (patch)

Removes unused file
Adds note on `day` subdirectory.
This commit is contained in:
Gary Meehan 2018-06-29 21:23:39 +01:00 committed by Tim Neutkens
parent 4744fbd096
commit 6a489efc1a
2 changed files with 1 additions and 4 deletions

View file

@ -41,4 +41,4 @@ now
## The idea behind the example
This example shows the most basic idea behind Next. We have 2 pages: `pages/index.js` and `pages/about.js`. The former responds to `/` requests and the latter to `/about`. Using `next/link` you can add hyperlinks between them with universal routing capabilities.
This example shows the most basic idea behind Next. We have 2 pages: `pages/index.js` and `pages/about.js`. The former responds to `/` requests and the latter to `/about`. Using `next/link` you can add hyperlinks between them with universal routing capabilities. The `day` directory shows that you can have subdirectories.

View file

@ -1,3 +0,0 @@
export default () => (
<div>About 2</div>
)