From c2fe98f94a2988b5112fe72f79d6dc0d0de8c653 Mon Sep 17 00:00:00 2001 From: Kate Date: Wed, 6 Feb 2019 15:30:29 -0800 Subject: [PATCH] Remove "Quick Start" section from Introduction Feedback was that this is confusing - removing it --- docs/_guide/index.md | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/docs/_guide/index.md b/docs/_guide/index.md index 1f5c5a88..f01228f6 100644 --- a/docs/_guide/index.md +++ b/docs/_guide/index.md @@ -16,26 +16,9 @@ LitElement uses [lit-html](https://lit-html.polymer-project.org/) to render into To build an app out of LitElement components, check out [PWA Starter Kit](https://pwa-starter-kit.polymer-project.org/). -## Quick start - -Install: - -```bash -npm install --save lit-element -``` - -Import: - -```js -import { LitElement, html } from 'lit-element'; -``` - -[Download a sample LitElement project](https://github.com/PolymerLabs/start-lit-element). - ## Next steps * [Getting Started](/guide/start): Set up LitElement and create a component. * [Templates](/guide/templates): Write templates with lit-html syntax. * [Properties](/guide/properties): Manage properties and attributes. * [Lifecycle](/guide/lifecycle): Work with the LitElement lifecycle API. -