Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Commit

Permalink
feat: use custom <Link/>
Browse files Browse the repository at this point in the history
  • Loading branch information
CanRau committed Sep 22, 2020
1 parent 218a5b2 commit f536a5e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/ArticlePreview.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @jsx jsx */
import { jsx } from 'theme-ui'
import PropTypes from 'prop-types'
import { Link } from 'gatsby'
import { Link } from '@components/Link'
import Img from 'gatsby-image/withIEPolyfill'
import { colors } from '@src/theme'

Expand Down
3 changes: 2 additions & 1 deletion src/templates/ContributorsPage.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
/* global window */
import React from 'react'
import PropTypes from 'prop-types'
import { graphql, Link } from 'gatsby'
import { graphql } from 'gatsby'
import styled from '@emotion/styled'
import { css } from '@emotion/core'
// import { Spring, animated, config } from 'react-spring/renderprops'
import MainLayout from '@components/MainLayout'
import { Link } from '@components/Link'
import { colors, media } from '@src/theme'

// const TotalDonated = styled.h4`
Expand Down
3 changes: 2 additions & 1 deletion src/templates/GalleryPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
// import PropTypes from 'prop-types'
// // import Helmet from 'react-helmet'
// import Img from 'gatsby-image/withIEPolyfill'
// import { graphql, Link } from 'gatsby'
// import { graphql } from 'gatsby'
// import { Link } from '@components/Link'
// import chunk from 'lodash/fp/chunk'
// import compose from 'ramda/src/compose'
// import flatten from 'ramda/src/flatten'
Expand Down

0 comments on commit f536a5e

Please sign in to comment.