Organize imports

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-07-11 12:25:56 +03:00
parent 14216307a1
commit 87bbcc190c
4 changed files with 10 additions and 11 deletions

View File

@@ -3,7 +3,7 @@ import { Button, Text } from 'react-native-paper';
import { PaddedView } from '../components';
import styles from '../styles';
const WelcomeScreen = (properties: { selectStorageLocation: () => void }) => {
const Welcome = (properties: { selectStorageLocation: () => void }) => {
return (
<PaddedView centered>
<Text
@@ -18,4 +18,4 @@ const WelcomeScreen = (properties: { selectStorageLocation: () => void }) => {
);
};
export default WelcomeScreen;
export default Welcome;