Organize files

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2023-07-10 09:06:41 +03:00
parent 3ff8521771
commit ab6aa76fa2
5 changed files with 5 additions and 10 deletions

View File

@@ -10,7 +10,7 @@ const styles = StyleSheet.create({
},
});
const ActionButton = () => {
const FloatingActionButton = () => {
const [state, setState] = React.useState(false);
return (
@@ -51,4 +51,4 @@ const ActionButton = () => {
);
};
export default ActionButton;
export default FloatingActionButton;

View File

@@ -1,2 +1,3 @@
export { default as FloatingActionButton } from './floatingActionButton';
export { default as LoadingView } from './loadingView';
export { default as PaddedView } from './paddedView';