From 1660a267bad076f50f5591fd2498071df83e9bd8 Mon Sep 17 00:00:00 2001 From: Valeriy Date: Thu, 2 May 2019 21:25:13 +0300 Subject: [PATCH] fix: remove unnecessary div and props --- .../templates/Guide/components/GuideFooter.js | 52 +++++++++---------- 1 file changed, 25 insertions(+), 27 deletions(-) diff --git a/client/src/templates/Guide/components/GuideFooter.js b/client/src/templates/Guide/components/GuideFooter.js index 3ed7be47c0..507339046a 100644 --- a/client/src/templates/Guide/components/GuideFooter.js +++ b/client/src/templates/Guide/components/GuideFooter.js @@ -5,33 +5,31 @@ import { Link, Spacer } from '../../../components/helpers'; const propTypes = { githubPath: PropTypes.string }; -const GuideFooter = props => { - const { githubPath } = props; - return ( -
- -
-

Contributing to the Guide

-

- This open source guide is curated by thousands of contributors. You can - help by researching, writing and updating these articles. It is an easy - and fun way to get started with contributing to open source. -

-
    -
  • - - Follow our contributing guidelines for working on guide articles - - . -
  • -
  • - Edit this article on GitHub. -
  • -
- -
- ); -}; + +const GuideFooter = ({ githubPath }) => ( + <> + +
+

Contributing to the Guide

+

+ This open source guide is curated by thousands of contributors. You can + help by researching, writing and updating these articles. It is an easy + and fun way to get started with contributing to open source. +

+ + + +); GuideFooter.displayName = 'GuideFooter'; GuideFooter.propTypes = propTypes;