diff --git a/src/screens/launch/screen/launchScreen.js b/src/screens/launch/screen/launchScreen.js
index 8c0a64c01..d05d7f77d 100644
--- a/src/screens/launch/screen/launchScreen.js
+++ b/src/screens/launch/screen/launchScreen.js
@@ -1,48 +1,18 @@
-import React, { PureComponent, Fragment } from 'react';
-import { View, Text } from 'react-native';
-
-// Constants
-
-// Components
-
+import React from 'react';
+import { View } from 'react-native';
import { Logo } from '../../../components';
-// import styles from './launchStyles';
-
-class LaunchScreen extends PureComponent {
- /* Props
- * ------------------------------------------------
- * @prop { type } name - Description....
- */
-
- constructor(props) {
- super(props);
- this.state = {};
- }
-
- // Component Life Cycles
-
- // Component Functions
-
- render() {
- return ;
-
- // Temporarily removed
- // return (
- //
- //
- // {/* eSteem
- // mobile */}
- //
- // );
- }
-}
+const LaunchScreen = () => (
+
+
+
+);
export default LaunchScreen;
diff --git a/src/screens/launch/screen/launchStyles.js b/src/screens/launch/screen/launchStyles.js
deleted file mode 100644
index 146037955..000000000
--- a/src/screens/launch/screen/launchStyles.js
+++ /dev/null
@@ -1,25 +0,0 @@
-import EStyleSheet from 'react-native-extended-stylesheet';
-
-export default EStyleSheet.create({
- container: {
- flex: 1,
- justifyContent: 'center',
- alignItems: 'center',
- backgroundColor: 'red',
- },
- title: {
- fontFamily: 'Sansation_Bold',
- color: '$primaryDarkBlue',
- fontSize: 30,
- paddingBottom: 0,
- },
- subTitle: {
- fontFamily: 'Sansation_Regular',
- color: '#00519c',
- fontSize: 24,
- },
- logo: {
- width: '$deviceWidth / 4',
- height: '$deviceWidth / 4',
- },
-});