All Projects → awmleer → with-wrapper

awmleer / with-wrapper

Licence: MIT License
React HOC for wrapper components.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to with-wrapper

ZetaHtmlEditControl
A small wrapper class around the Windows Forms 2.0 WebBrowser control.
Stars: ✭ 72 (+105.71%)
Mutual labels:  wrapper
addhoc
Handy little helper to create proper React HOC functions complete with hoisted statics and forwarded refs
Stars: ✭ 40 (+14.29%)
Mutual labels:  hoc
JDSP4Linux
An audio effect processor for PipeWire and PulseAudio clients
Stars: ✭ 192 (+448.57%)
Mutual labels:  wrapper
pwnscripts
Very simple script(s) to hasten binary exploit creation
Stars: ✭ 66 (+88.57%)
Mutual labels:  wrapper
popyt
A very easy to use Youtube Data v3 API wrapper.
Stars: ✭ 42 (+20%)
Mutual labels:  wrapper
ssh2.nim
Async SSH, SCP and SFTP client for Nim, using libssh2 wrapper [WIP]
Stars: ✭ 17 (-51.43%)
Mutual labels:  wrapper
koishi
Python wrapper for the unofficial scraped API of the satori testing system.
Stars: ✭ 13 (-62.86%)
Mutual labels:  wrapper
raylib-nelua
Raylib wrapper to nelua language
Stars: ✭ 27 (-22.86%)
Mutual labels:  wrapper
pygmentize
Pygmentize is a wrapper to `pygmentize`, the command line interface provided by Pygments, a python syntax highlighter.
Stars: ✭ 25 (-28.57%)
Mutual labels:  wrapper
firebase-db-wrapper-swift
An easy-to-use wrapper for Firebase's Realtime Database
Stars: ✭ 16 (-54.29%)
Mutual labels:  wrapper
pyGroff
laTEX is awesome but we are lazy -> groff with markdown syntax and inline code execution
Stars: ✭ 25 (-28.57%)
Mutual labels:  wrapper
gof
Yet another simple Go filesystem wrapper
Stars: ✭ 13 (-62.86%)
Mutual labels:  wrapper
dotty dict
Dictionary wrapper for quick access to deeply nested keys.
Stars: ✭ 67 (+91.43%)
Mutual labels:  wrapper
caller-lookup
Reverse Caller Id using TrueCaller
Stars: ✭ 55 (+57.14%)
Mutual labels:  wrapper
TLightFileStream
Implements a lightweight, high-performance, non-allocating advanced-record-based wrapper around the SysUtils file handling routines as an alternative to Classes.TFileStream.
Stars: ✭ 21 (-40%)
Mutual labels:  wrapper
Lavalink.py
A wrapper for Lavalink in Python, which aims to be powerful and intuitive.
Stars: ✭ 162 (+362.86%)
Mutual labels:  wrapper
Nodeactyl
A NodeJS API for Pterodactyl panel, this was originally designed for discord.js (Discord bots)
Stars: ✭ 107 (+205.71%)
Mutual labels:  wrapper
SharpPhysFS
Managed wrapper for the PhysFS library
Stars: ✭ 14 (-60%)
Mutual labels:  wrapper
coinmarketcap-api
CoinMarketCap API wrapper for node
Stars: ✭ 111 (+217.14%)
Mutual labels:  wrapper
restique
A wrapper around restic with profiles
Stars: ✭ 43 (+22.86%)
Mutual labels:  wrapper

with-wrapper

GitHub npm version npm downloads React

React HOC for wrapper components.

Usage

import {withWrapper} from 'with-wrapper'

export const App = withWrapper((element, props) => (
  <div className="wrapper">
    {element}
  </div>
))((props) => {
  return (
    <p>
      This is App.
    </p>
  )
})

The above component will be rendered as:

<div class="wrapper">
  <p>
    This is App.
  </p>
</div>
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].