// @flow import * as React from "react"; import { Page, Grid, GalleryCard, Form } from "tabler-react"; import SiteWrapper from "./SiteWrapper.react"; import json from "./data/Gallery.Items"; // TODO:Add GalleryCardList component to avoid insert extra className // TODO:Update Page.Header to additional components function GalleryPage(): React.Node { const options = ( ); return ( {json.items.map((item, key) => ( ))} ); } export default GalleryPage;