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 4056a4a950
commit 160c24c915
5 changed files with 13 additions and 7486 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'],
},
],
};