summaryrefslogtreecommitdiff
path: root/frontend/src/scenes/SplashScreen/index.js
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2018-06-09 12:18:44 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2018-06-09 12:49:52 +0200
commit9038d75925aa0bcc6cdf0bfb45b7f78415b3d465 (patch)
tree99e18ab2820b475c6f90c280683a41ab20bab24d /frontend/src/scenes/SplashScreen/index.js
parentRemove rebass dependency (diff)
downloadseven-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.js2
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" />
);
}
bgstack15