Organize imports
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
export { default as AddItem } from './addItem';
|
||||
export { default as Home } from './home';
|
||||
export { default as Search } from './search';
|
||||
export { default as Tags } from './tags';
|
||||
export { default as Settings } from './settings';
|
||||
export { default as Tags } from './tags';
|
||||
export { default as Welcome } from './welcome';
|
||||
|
@@ -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;
|
||||
|
Reference in New Issue
Block a user