A UI component library built with LitElement for Castle Rock Associates.
Install the library through npm:
npm install cra-web-components --save
The most simple and common way of including the components into an application is by loading the core bundle:
// include bundle through module import
import 'cra-web-components';
As an alternative, you can also load individual components to reduce loading time. Be aware that components are inter-dependent and should be imported independently:
// include individual components and styles through module import
import 'cra-web-components/components/button';
import 'cra-web-components/components/text';