UNPKG

gatsby-theme-curiousity

Version:

The Gatsby theme that builds the portfolio component of my website

17 lines (13 loc) 343 B
import { graphql } from "gatsby"; import PostPage, { PiecePage } from "../components/Piece"; export default PostPage; export interface PiecePageQuery { portfolioItem: PiecePage; } export const query = graphql` query CuriousityPiecePageQuery($id: String!) { portfolioItem(id: { eq: $id }) { ...CuriousityPiecePage } } `;