chore: regenerate beta.22 examples (#7742)

This commit is contained in:
Sébastien Lorber 2022-07-08 19:08:17 +02:00 committed by GitHub
parent f0f97f29f9
commit e62d5e3f48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
37 changed files with 4885 additions and 5300 deletions

View file

@ -6,9 +6,9 @@ sidebar_position: 1
Add **Markdown or React** files to `src/pages` to create a **standalone page**:
- `src/pages/index.js` -> `localhost:3000/`
- `src/pages/foo.md` -> `localhost:3000/foo`
- `src/pages/foo/bar.js` -> `localhost:3000/foo/bar`
- `src/pages/index.js` `localhost:3000/`
- `src/pages/foo.md` `localhost:3000/foo`
- `src/pages/foo/bar.js` `localhost:3000/foo/bar`
## Create your first React Page
@ -28,7 +28,7 @@ export default function MyReactPage() {
}
```
A new page is now available at `http://localhost:3000/my-react-page`.
A new page is now available at [http://localhost:3000/my-react-page](http://localhost:3000/my-react-page).
## Create your first Markdown Page
@ -40,4 +40,4 @@ Create a file at `src/pages/my-markdown-page.md`:
This is a Markdown page
```
A new page is now available at `http://localhost:3000/my-markdown-page`.
A new page is now available at [http://localhost:3000/my-markdown-page](http://localhost:3000/my-markdown-page).