# Tiny Components - Masonry Proof of Concept! Using Styles for UI from [Plain-UI](https://plain-ui.com) And a few Ideas from this [Article](https://css-tricks.com/piecing-together-approaches-for-a-css-masonry-layout/) Source: [https://gitea.node001.net/tiny-components/masonry](https://gitea.node001.net/tiny-components/masonry) Mirror: [https://github.com/node001-net/tiny-components-masonry](https://github.com/node001-net/tiny-components-masonry) ![demo](example/demo.gif) ## Installation Setup this registry in your project .npmrc file: ``` @tiny-components:registry=https://gitea.node001.net/api/packages/tiny-components/npm/ ``` Install with npm or yarn ``` npm i --save @tiny-components/masonry yarn add @tiny-components/masonry ``` ## Using ``` import Masonry from './masonry.js' document.addEventListener("DOMContentLoaded", (event) => { const masonry = new Masonry() }) ``` Markup, ```
1
...
```