Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/fouad/reaku

Helper library to mount deku apps into a React app.
https://github.com/fouad/reaku

Last synced: 3 months ago
JSON representation

Helper library to mount deku apps into a React app.

Awesome Lists containing this project

README

        

# reaku

Helper library to mount deku apps into a React app.

### Usage

```
$ npm install --save reaku
```

```node
import React from 'react'
import Reaku from 'reaku'
import DekuComponent from 'ui/deku-component'

export default () => (


React Header

console.log('mounted deku')
}}
props={{
text: 'Hi from Deku 🎄'
}}
/>


)
```