react how to export component code example
Example 1: import react
import React, { Component } from 'react';
Example 2: react export
import React from 'react';
import {Text} from 'react-native';
export default function Cat() {
return (
<Text>Hello, I am your cat!</Text>
);
}