mirror of
https://github.com/facebook/docusaurus.git
synced 2025-07-02 17:38:12 +02:00
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:
parent
ab6bab9f8d
commit
25cf8bb786
4 changed files with 19 additions and 35 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue