JSPM

dimensional-grid-gallery

1.0.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 1
    • Score
      100M100P100Q18327F
    • License ISC

    A modern React component library for creating beautiful, responsive grid galleries with an integrated lightbox feature. Features include smooth transitions, customizable styling, and full TypeScript support.

    Package Exports

    • dimensional-grid-gallery
    • dimensional-grid-gallery/dist/index.js
    • dimensional-grid-gallery/dist/index.mjs

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (dimensional-grid-gallery) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Installation

    npm install dimensional-grid-gallery
    # or
    yarn add dimensional-grid-gallery

    Usage

    import { GridGallery } from "dimensional-grid-gallery";
    
    function App() {
      const images = [
        { src: "path/to/image1.jpg", alt: "Image 1" },
        { src: "path/to/image2.jpg", alt: "Image 2" },
        // ... more images
      ];
    
      return <GridGallery images={images} />;
    }