RWS
0
Q:

react export

import React, { Component } from 'react';
1
import React from 'react';
import {Text} from 'react-native';

export default function Cat() {
  return (
    <Text>Hello, I am your cat!</Text>
  );
}
0
//Export single component in react.js
import React from "react";

function MyInfo() {
    return (
      <div>
        <h1>Swapnil</h1>
        <p>Hy this is Swapnil, I have no idea who I am</p>
        <ul>
          <li>Ladakh</li>
          <li>Himachal Pradesh</li>
          <li>Vellangiri Mountains</li>
        </ul>
      </div>
    )
  }

export default MyInfo
0
// Exporting the component 
export default ChangeColor; 
0

New to Communities?

Join the community