Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/fouad/reaku
- Owner: fouad
- License: mit
- Created: 2016-12-27T19:54:26.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-05T19:57:46.000Z (about 8 years ago)
- Last Synced: 2024-04-28T11:20:19.637Z (10 months ago)
- Language: JavaScript
- Size: 21.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 🎄'
}}
/>
)
```