Popularity
1.5
Stable
Activity
0.0
Stable
36
5
9
Programming language: JavaScript
License: MIT License
Tags:
UI Layout
reactwm alternatives and similar libraries
Based on the "UI Layout" category.
Alternatively, view reactwm alternatives based on common mentions on social networks and blogs.
-
react-flexbox-grid
A set of React components implementing flexboxgrid with the power of CSS Modules. -
react-spaces
React components that allow you to divide a page or container into nestable anchored, scrollable and resizable spaces. -
flexbox-react
DISCONTINUED. Unopinionated, standard compliant flexbox components. You don't need to learn any propietary syntax. If you know how to use flexbox, you know how to use flexbox-react components. -
react-colrow
Smarter layout components. Based on css flexbox. Support responsive design, Typescript, server side render. 3 KB gzipped. -
react-schematic
Build responsive react layouts using styled schematics without an overhead of any theme configuration
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

Do you think we are missing an alternative of reactwm or a related project?
README
ReactWM
A minimal window manager built using React.
Install
npm install --save reactwm
Example App
> npm start
Then open http://localhost:8000
Usage
var React = require('react');
var ReactWM = require('reactwm');
var Settings = require('./views/settings');
var manager = new ReactWM.Manager();
React.renderComponent(
<ReactWM manager={manager}/>,
document.body
);
manager.open(<Settings />, {
id: 'settings',
x: 20,
y: 20,
width: 300,
height: 400,
title: 'Settings'
});