UNPKG

@udus/notion-renderer

Version:
6 lines (5 loc) 255 B
import { jsx as _jsx } from "react/jsx-runtime"; import { Card } from "./Card.js"; export const Gallery = ({ pages }) => { return (_jsx("div", { className: "notion-gallery", children: pages.map((page) => (_jsx(Card, { page: page }, page.id))) })); };