tonivj5 / preact-fluid

✅ A minimal UI kit for Preact

Home Page:https://ajainvivek.github.io/preact-fluid/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Preact Fluid

Minimal UI Kit for Preact, with reusable components.

Build Status Dependencies DevDependencies code style: prettier HitCount

Installation

Preact Fluid is available as an npm package.

npm install preact-fluid --save

Usage

Here is a quick example to get you started, it's all you need:

import { render } from 'preact';
import { Button } from 'preact-fluid';

function App() {
  return (
    <Button>
      Hello World
    </Button>
  );
}

render(<App />, document.querySelector('#app'));

Documentation

Check out our documentation website.

Contributing

We'd greatly appreciate any contribution you make. :D

License

This project is licensed under the terms of the MIT license.

About

✅ A minimal UI kit for Preact

https://ajainvivek.github.io/preact-fluid/

License:MIT License


Languages

Language:JavaScript 100.0%