chore: Update examples after release of Docusaurus v2.1.0 (#8041)

This commit is contained in:
Sébastien Lorber 2022-09-02 13:05:04 +02:00 committed by GitHub
parent 56feb41445
commit 54986a3b21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 38 additions and 23674 deletions

View file

@ -44,11 +44,13 @@ It is also possible to create your sidebar explicitly in `sidebars.js`:
```js title="sidebars.js"
module.exports = {
tutorialSidebar: [
'intro',
// highlight-next-line
'hello',
{
type: 'category',
label: 'Tutorial',
// highlight-next-line
items: ['hello'],
items: ['tutorial-basics/create-a-document'],
},
],
};