//There two types of imports
export default class || function || variable
//When you use export default, export one thing only and import something like this:
import thing from "path"
//-------------------------------------
export { class || function || variable }
//With this we can especify what we want import
import { thing1, ...} from "path"
import React from 'react';
import {Text} from 'react-native';
export default function Cat() {
return (
<Text>Hello, I am your cat!</Text>
);
}