chore: regen examples for 2.0 beta.18 (#7002)

This commit is contained in:
Sébastien Lorber 2022-03-25 16:45:55 +01:00 committed by GitHub
parent 73deaa8bf6
commit e97f2529d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 1743 additions and 1876 deletions

View file

@ -41,14 +41,14 @@ This is my **first Docusaurus document**!
It is also possible to create your sidebar explicitly in `sidebars.js`:
```diff title="sidebars.js"
```js title="sidebars.js"
module.exports = {
tutorialSidebar: [
{
type: 'category',
label: 'Tutorial',
- items: [...],
+ items: ['hello'],
// highlight-next-line
items: ['hello'],
},
],
};