

Choose the method that best suits you to install and use Tango UI.
npm install tango-ui-cwyarn add tango-ui-cwpnpm add tango-ui-cwImport the CSS file into your project's root component:
// Import root component CSS (App.jsx / layout.tsx)
import 'tango-ui-cw/tango.css';Temporary solution: Create a type declaration file in the project root directory to enable TypeScript support.
// tango-ui-cw.d.ts (temporary type declaration)
declare module 'tango-ui-cw';No installation required; simply include it in your HTML via CDN:
<!-- Add in HTML file's <head> tag -->
<link rel="stylesheet" href="https://unpkg.com/tango-ui-cw@0.9.9/dist/index.css" />
<link rel="stylesheet" href="https://unpkg.com/tango-ui-cw@0.9.9/dist/index.js" />
<link rel="stylesheet" href="https://unpkg.com/tango-ui-cw@0.9.9/dist/index.mjs" />// Dynamic loading in JavaScript/TypeScript
import('https://unpkg.com/tango-ui-cw@0.9.9/dist/index.css');
import('https://unpkg.com/tango-ui-cw@0.9.9/dist/index.js');
import('https://unpkg.com/tango-ui-cw@0.9.9/dist/index.mjs');CDN advantages
Tango UI is ready; start building beautiful interfaces!