JSPM

@ipohjs/dev

0.0.1-rc.1
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q20117F
  • License MIT

Dev tools for @ipohjs

Package Exports

  • @ipohjs/dev
  • @ipohjs/dev/dist/.tsbuildinfo
  • @ipohjs/dev/dist/index.d.ts
  • @ipohjs/dev/dist/index.d.ts.map
  • @ipohjs/dev/dist/index.js
  • @ipohjs/dev/dist/index.js.map
  • @ipohjs/dev/dist/to-build-vite-config/to-build-vite-config.d.ts
  • @ipohjs/dev/dist/to-build-vite-config/to-build-vite-config.d.ts.map
  • @ipohjs/dev/dist/to-build-vite-config/to-build-vite-config.js
  • @ipohjs/dev/dist/to-build-vite-config/to-build-vite-config.js.map

Readme

@ipohjs/qwik-button

Button component used in @ipohjs, built with Qwik.


Buy me a coffee Follow me

npm-latest MIT License

Downloads Total downloads

Dependencies ci publish codecov

Code of Conduct

Yet another button component built with Qwik.

The stream-able and resumable UI component you will ever need. Visit @ipohjs/webui for more components.

Pre-requisite

Install

# Install via npm
$ pnpm install @ipohjs/qwik-button

# Install via pnpm
$ pnpm install @ipohjs/qwik-button

Usage

@ipohjs/qwik-button

import { QwikButton } from '@ipohjs/qwik-button';

export const Main = component$(() => {
  const onClick$ = $<QwikButtonProps['onClick$']>((ev) => {
    console.debug('click', ev);
  });

  return (
    <main>
      <QwikButton onClick$={onClick$}>Click me</QwikButton>
    </main>
  );
});

License

MIT License © @ipohjs/core-team