getting started
- Wirte markdown docs
- Run
flybook
Write contents
Create docs
directory and then write basic.md
and advanced.md
- docs/basic.md
## Basic
Basic Content
- docs/advanced.md
## Advanced
Advanced Content
Add npm scripts
package.json
,
"scripts": {
"docs": "flybook docs"
},
...
and then run npm run docs