
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
react-layout-builder
Advanced tools
react-layout-builder provides helper functions to build layout like a DSL.
$ yarn add react-layout-builder
import {layout, section, col} from 'react-layout-builder';
import React from 'react';
import {
layout,
section,
col
} from 'react-layout-builder';
const PhotoAlbum = props => {
const { images } = props;
const three60s = images.filter(i => i.type == '360');
const renderImage = (name) => {
const image = images.find(i => i.name === name);
return <img alt={image.title} src={image.url} />;
}
const grid = (className, ...images) =>
col(renderImage, className, ...images.map(i => i.name));
return layout(
section('Photos',
new Array( Math.ceil( images.length/3 ) )
.map( _ =>
grid(
'grid-of-3',
images.pop(),
images.pop(),
images.pop()
)
)
),
section('360 Photos',
three60s
.map( p => grid('full-width', p) )
),
<p key="copyright">Copyrighted by author</p>
);
}
layout/*
* @param {node} mainHeader
* @param {node} section
* @return {node}
*/
layout(mainHeader, ...sections)
// <div className="layout">{sections}</div>
section/*
* @param {node} sectionHeader
* @param {node} row
* @return {node}
*/
section(sectionHeader, ...rows)
// <section className="section">{rows}</section>
col/*
* @param {string} className - the group identifier for all columns within.
* @param {string} fieldName - the name for lookup with `getFieldProps`+`renderField`
* @return {node}
*/
col(renderField, className, ...names)
// <div className={className}>
// {names.map(name => renderField(name))}
// </className>
FAQs
Build form layout
We found that react-layout-builder demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.