@canopy-web/core
v0.4.19
Published
Canopy Web Components
Readme
Installation
To get Canopy up and running in your application, you have 2 options:
- Install via NPM
npm install @canopy-web/core- Add the script and link tags in the head of your index.html to load the package
<script type="module" src="node_modules/@canopy-web/core/dist/core/core.esm.js"> </script> <link rel="stylesheet" href="node_modules/@canopy-web/core/dist/core/core.css"/> - You can now use the components anywhere in your template, JSX, html etc
- Add the script and link tags in the head of your index.html to load the package
- Use via CDN with unpkg
- Add a script tag in the head of your index.html to load the package
<script type="module" src="https://unpkg.com/@canopy-web/core@latest/dist/core/core.esm.js"> </script> <link rel="stylesheet" href="https://unpkg.com/@canopy-web/core@latest/dist/core/core.css"/> - You can now use the components anywhere in your template, JSX, html etc
- Add a script tag in the head of your index.html to load the package
