list-element-program-example

### To use a LitElement component in your code: *** 1. From your project folder, install the component from npm.

Usage no npm install needed!

<script type="module">
  import listElementProgramExample from 'https://cdn.skypack.dev/list-element-program-example';
</script>

README

lit-element-example

To use a LitElement component in your code:


  1. From your project folder, install the component from npm.

     npm install list-element-program-example
    
  2. Import the component.

    In a JavaScript module:

     import 'list-element-program-example';
    

    In an HTML page:

     <script type="module">
     import './path-to/list-element-program-example/list-element-example.js';
     </script>
    

    Or:

     <script type="module" src="./path-to/list-element-program-example/list-element-example.js"></script>
    
  3. Add the component to your application or component:

     <list-element-example></list-element-example>