diff --git a/packages/integrations/lit/README.md b/packages/integrations/lit/README.md index c8f4b1f43..c1abaa292 100644 --- a/packages/integrations/lit/README.md +++ b/packages/integrations/lit/README.md @@ -79,9 +79,7 @@ customElements.define('my-element', MyElement); Now, the component is ready to be imported via the Astro frontmatter: ```astro -// src/pages/index.astro - -import { MyElement } from '../components/my-element.js'; +// src/pages/index.astro import {MyElement} from '../components/my-element.js'; ```