Minimal UI Kit for Preact, with reusable components.
Preact Fluid is available as an npm package.
npm install preact-fluid --saveHere is a quick example to get you started, it's all you need:
import { render } from 'preact';
import { Button } from '@deboxsoft/component-web-react';
function App() {
return (
<Button>
Hello World
</Button>
);
}
render(<App />, document.querySelector('#app'));Check out our documentation website.