No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.


  
image 3.11.4
Github

Elements-x is a collection of custom-built custom elements, like html tags, independent from frameworks(Angular, React, Vue or any), and look-and-feel of components are customizable by overriding css.

npm usage

  1. Install elements-x, $ npm install elements-X -D
  2. Import into your code to define all custom elements, import 'elements-x
  3. Use it like html tags, e.g. <x-clock run></x-clock>

browser usage

<head> <script src="https://unpkg.com/elements-x"></script> </head> <body> <x-clock run></x-clock> </body>

Example