KO
|
EN
gitlite — search
Search
#typescript
#ai-agents
#ai
#dsh-plugin
#deepseek-harness
#open-source
#claude-code
#codex
#cli
#developer-tools
#react
#windows
with-wrapper
★ 35
Open GitHub ↗
React HOC for wrapper components.
Download README (.md)
Explore Similar Repositories
object_face_detection_webcam_react
:
Face/Mood detection using face-api.js
CocosCreator-EaseAction-Plus
:
Cocos Creator 扩展缓动
qs
:
Python based command line tool set, complete documentation, rich functions! 基于Python的命令行工具集,完善的文档,丰富的功能,友好的调用方式!
trajnetplusplusdata
:
Data for TrajNet++ Challenge
reconstructing-typescript
:
Code and demos for Reconstructing TypeScript blog posts.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
with-wrapper
?
Download (.md)
# with-wrapper [](https://github.com/awmleer/with-wrapper) [](https://www.npmjs.com/package/with-wrapper) [](https://www.npmjs.com/package/with-wrapper)  React HOC for wrapper components. ## Usage ```jsx 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: ```html <div class="wrapper"> <p> This is App. </p> </div> ```