Background
Often I find myself trying to arrange sets of variants in the same place on a page.
It looks like we can push multiple stories into the same page, but it takes a bit of extra styling to make it work:

Proposal
What if we added a first class citizen for this?
<template>
<Story>
<Chapter title="..." description="...">
<Variant>
...
</Variant>
<Variant>
...
</Variant>
</Chapter>
<Chapter title="..." description="...">
<Variant>
...
</Variant>
<Variant>
...
</Variant>
</Chapter>
</Story>
</template>
Would need to think about:
- how layout would work with the parent story
- would each chapter inherit layout, or inherit from the above?
- etc
Background
Often I find myself trying to arrange sets of variants in the same place on a page.
It looks like we can push multiple stories into the same page, but it takes a bit of extra styling to make it work:
Proposal
What if we added a first class citizen for this?
Would need to think about: