import { html } from 'lit-html'; import { withLinks } from '@storybook/addon-links'; export default { title: 'Welcome', decorators: [withLinks], }; export const Welcome = () => html`

Welcome to Storybook for Web Components

This is a UI component dev environment for your plain HTML snippets.

We've added some basic stories inside the stories directory.
A story is a single state of one or more UI components. You can have as many stories as you want.
(Basically a story is like a visual test case.)

See these sample stories

Just like that, you can add your own snippets as stories.
You can also edit those snippets and see changes right away.

Usually we create stories with smaller UI components in the app.
Have a look at the Writing Stories section in our documentation.

`;