diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-09 12:18:44 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2018-06-09 12:49:52 +0200 |
commit | 9038d75925aa0bcc6cdf0bfb45b7f78415b3d465 (patch) | |
tree | 99e18ab2820b475c6f90c280683a41ab20bab24d /frontend/src/scenes/SplashScreen/index.js | |
parent | Remove rebass dependency (diff) | |
download | seven-wonders-9038d75925aa0bcc6cdf0bfb45b7f78415b3d465.tar.gz seven-wonders-9038d75925aa0bcc6cdf0bfb45b7f78415b3d465.tar.bz2 seven-wonders-9038d75925aa0bcc6cdf0bfb45b7f78415b3d465.zip |
Migrate to react 16 and blueprint 2
Diffstat (limited to 'frontend/src/scenes/SplashScreen/index.js')
-rw-r--r-- | frontend/src/scenes/SplashScreen/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/scenes/SplashScreen/index.js b/frontend/src/scenes/SplashScreen/index.js index 5d9af862..1eee4e1b 100644 --- a/frontend/src/scenes/SplashScreen/index.js +++ b/frontend/src/scenes/SplashScreen/index.js @@ -34,7 +34,7 @@ class SplashScreenPresenter extends Component<SplashScreenProps> { } renderSubmit = () => ( - <Button className={Classes.MINIMAL} onClick={this.play} intent={Intent.PRIMARY} rightIconName="arrow-right" /> + <Button className={Classes.MINIMAL} onClick={this.play} intent={Intent.PRIMARY} rightIcon="arrow-right" /> ); } |