Skip to content

adiffengine/Lightning-UI-Components

 
 

Repository files navigation

Lightning UI Components

A collection of reusable UI components aimed at reducing the development cycle required to build apps with Lightning.

See the Storybook

Quick Start

Install from NPM:

npm install --save lightning-ui-components

Import components as ES Modules

import { FocusManager } from 'lightning-ui-components';

Use components in your application

import from 'lightning-ui-components';
import { FocusManager } from 'lightning-ui-components';

class MyComponent extends lng.Component {
  static _template() {
    return {
      FocusManager: {
        type: FocusManager,
        direction: 'row',
        children: []
      }
    };
  }
  _getFocused() {
    return this.tag('FocusManager');
  }
};

Questions?

Join the Lightning Community on Slack

About

No description, website, or topics provided.

Resources

License

Apache-2.0, Unknown licenses found

Licenses found

Apache-2.0
LICENSE
Unknown
COPYING

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 98.5%
  • Other 1.5%