How to use the bulma/css/bulma.css.row function in bulma

To help you get started, we’ve selected a few bulma examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github sbayd / react-cv / src / Components / ProjectsList.js View on Github external
{groups.map((group) => {
            const { sectionHeader, description, items } = group;
            return (<div>
              <div>
                <div>
                  <h5>
                    {sectionHeader}
                  </h5>
                  <span> - {description}</span>
                </div>
              </div>
              <hr>
              <div>
                {items.map((project) =&gt; {
                  const { projectUrl, title, description } = project;
                  return (
                    <div>
                      <h6>
                        {projectUrl ? <a href="{getFixedUrl(projectUrl)}">{title}</a> : title}
                      </h6>
                      { description ? <div style="{{">{description}</div> : null}
                    </div>
                  );
                })}
              </div>
            </div>);
          })}