bloom-client 0.1.0

Client-side rendering for bloom-core
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# bloom-client

A client-side UI library similar to react-dom based on [bloom-core](https://crates.io/crates/bloom-core) and [bloom-html](https://crates.io/crates/bloom-html).

For server-side prerendering see [bloom-ssr](https://crates.io/crates/bloom-ssr)

## Setup
Docs on how to use this with wasm-pack are coming soon

## API
There's really only two APIs
* `render` renders a component completely on the client
* `hydrate` renders a component based on pre-rendered html (usually from using `bloom-ssr` on the server)

## Example
See [bloom-client-example](https://github.com/mismosmi/bloom/tree/main/bloom-client-example)