Popularity
1.5
Growing
Activity
0.0
Stable
33
3
8
Monthly Downloads: 0
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-masonry-component
A React.js component for using @desandro's Masonry. -
react-layout-components
Layout Components for React based on Flexbox. -
flexbox-react
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
Responsive grid layout components. Based on css flexbox. Support fraction width, auto grow.
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
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'
});