An open API service indexing awesome lists of open source software.

https://github.com/motion/gloss-docs

Documentation for Gloss
https://github.com/motion/gloss-docs

Last synced: 8 months ago
JSON representation

Documentation for Gloss

Awesome Lists containing this project

README

          

TODO

- don't memo the whole gloss view, instead:
- memo the work inside the view
- why? lots of views take children, so memo does nothing
- plus we can eventually memo things really smart, handling the various object syntax like boxShadow={{ }}

# gloss 💅

usage:

full-featured example:

```js
import React from 'react'
import ReactDOM from 'react-dom'
import Icon from './icon'
import Popover from './popover'

const LINE_HEIGHT = 30

ReactDOM.render(




,
document.querySelector('#app'),
)
```