glimmer-ui

v0.9.3 • by DesignSys

A beautiful and accessible component library for building modern Swalang interfaces.

Installation

$ swalang install glimmer-ui

Documentation

Glimmer UI

Build stunning UIs faster with a rich set of pre-built components.

Usage

import { Button, Card } from 'glimmer-ui';

component MyComponent {
  render() {
    return (
      <Card title="Welcome">
        <p>This is a Glimmer card.</p>
        <Button variant="primary">Click Me</Button>
      </Card>
    );
  }
}