Sha256: e05db11d5d78c65c6cca6eeabc856844df0e331005be1cc8bb26c2ce0274079f
Contents?: true
Size: 397 Bytes
Versions: 4
Compression:
Stored size: 397 Bytes
Contents
import React from "react"; import * as Images from "../types/Images"; import useImageGrid from "./ImageGrid/useImageGrid"; import Grid from "./ImageGrid/Grid"; interface Props extends Images.GridOptions { records: Images.Record[]; } export default function ImageGrid(props: Props) { const state = useImageGrid(props.records, props.showEmbed); return <Grid state={state} {...props} />; }
Version data entries
4 entries across 4 versions & 1 rubygems