Migrate to React 16 (#655)

* migrating to react 16

* Add WarriorJS to Docusaurus users (#656)

* Separate users data from code

* Add WarriorJS to Docusaurus users

* [Feature] Introducing image compression using imagemin (#654)

* Introduce imagemin for compressing images

* Replace original images with the optimized ones

* Add imagemin-svgo to dependencies

* Remove console statement, replace let with const

* Replace let with const

* Add --skip-image-compression

* Run Prettier

* Fix header

* Prettier
This commit is contained in:
Agastya Darma 2018-05-09 19:58:47 -07:00 committed by Yangshun Tay
parent ab6bab9f8d
commit 25cf8bb786
4 changed files with 19 additions and 35 deletions

View file

@ -1,3 +1,4 @@
const PropTypes = require('prop-types');
/**
* Copyright (c) 2017-present, Facebook, Inc.
*
@ -22,7 +23,7 @@ const GitHubButton = props => (
);
GitHubButton.propTypes = {
config: React.PropTypes.object
config: PropTypes.object
};
class Footer extends React.Component {