example(lit): remove stories for deprecated features info and note

This commit is contained in:
Gaëtan Maisse 2021-05-04 22:18:23 +02:00
parent 0a40da0838
commit 16062a0c56
No known key found for this signature in database
GPG Key ID: D934C0EF3714A8A8
2 changed files with 0 additions and 25 deletions

View File

@ -1,6 +1,5 @@
import { html } from 'lit';
import { styleMap } from 'lit/directives/style-map.js';
import notes from './notes/notes.md';
import mdxNotes from './notes/notes.mdx';
export default {
@ -29,14 +28,3 @@ export const DocsDisable = () => html`<div>This story shouldn't show up in DocsP
DocsDisable.parameters = {
docs: { disable: true },
};
// ⬇️ Not working for now
// export const WithNotes = () => html`<div>Click docs tab to see DocsPage docs</div>`;
// WithNotes.storyName = 'with notes';
// WithNotes.parameters = { notes };
//
// export const WithInfo = () => html`<div>Click docs tab to see DocsPage docs</div>`;
// WithInfo.storyName = 'with info';
// WithInfo.parameters = {
// info: 'some user info string',
// };

View File

@ -1,13 +0,0 @@
# This is a Markdown File
#### It is imported and compiled using a webpack markdown loader
---
Supports code snippets too:
```jsx
<div>
Foo
</div>
```