Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 417 Bytes

UsingNPM.md

File metadata and controls

22 lines (16 loc) · 417 Bytes

Usage with NPM

Installation

If you want to use simba-starter directly in your application, this is possible, as simba-starter is published to NPM.

npm i @divriots/simba --save

Use it in your app

Using a component directly in your application

<head>
  <script type="module" src="@divriots/simba/button/define"></script>
</head> 
<body>
  <simba-button>Submit</simba-button>
</body>