diff --git a/examples/lit-kitchen-sink/src/stories/addons/docs/addon-docs.stories.ts b/examples/lit-kitchen-sink/src/stories/addons/docs/addon-docs.stories.ts
index be1d8b99cc0..16a3b9d4d1a 100644
--- a/examples/lit-kitchen-sink/src/stories/addons/docs/addon-docs.stories.ts
+++ b/examples/lit-kitchen-sink/src/stories/addons/docs/addon-docs.stories.ts
@@ -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`
This story shouldn't show up in DocsP
DocsDisable.parameters = {
docs: { disable: true },
};
-
-// ⬇️ Not working for now
-// export const WithNotes = () => html`
Click docs tab to see DocsPage docs
`;
-// WithNotes.storyName = 'with notes';
-// WithNotes.parameters = { notes };
-//
-// export const WithInfo = () => html`
Click docs tab to see DocsPage docs
`;
-// WithInfo.storyName = 'with info';
-// WithInfo.parameters = {
-// info: 'some user info string',
-// };
diff --git a/examples/lit-kitchen-sink/src/stories/addons/docs/notes/notes.md b/examples/lit-kitchen-sink/src/stories/addons/docs/notes/notes.md
deleted file mode 100644
index 1b903f1d944..00000000000
--- a/examples/lit-kitchen-sink/src/stories/addons/docs/notes/notes.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# This is a Markdown File
-
-#### It is imported and compiled using a webpack markdown loader
-
----
-
-Supports code snippets too:
-
-```jsx
-
- Foo
-
-```