@saasquatch/stencilbook
v1.1.0
Published
Storybook, but built with Stencil. Used to provide an easy to view and test implemented components and all of their states / specs, and to easily share progress with customers.
Downloads
173
Maintainers
Keywords
Readme
Stencilbook
A storybook inspired development environment for Stencil. Uses the Component Story Format (CSF) for portability but relies on the Stencil compiler to do all the lazy loading and bundling of imports.
Usage
npm i @saasquatch/stencilbook
import { withHooks } from "@saasquatch/stencil-hooks";
import { useStencilbook } from "@saasquatch/stencilbook";
// Import your stories here. Stencilbook doesn't auto-discover stories
import * as Footer from "../../stories/Footer.stories";
import * as Banner from "../../stories/Banner.stories";
const stories = [Banner, Footer];
@Component({
tag: "customers-stencilbook",
})
export class Component {
constructor() {
withHooks(this);
}
disconnectedCallback() {}
render() {
return useStencilbook(stories);
}
}